in recent pytorch versions it has been introduced torch.logsumexp which I think that could be used to replace stabilized_log_sum_exp in your implementation of the sinkhorn algorithm.
Thanks for the pointer! I wrote this during a project in 2018 and didn't know this function was available. I'll update this in the next version of the library.
hi @fwilliams,
in recent pytorch versions it has been introduced
torch.logsumexp
which I think that could be used to replacestabilized_log_sum_exp
in your implementation of the sinkhorn algorithm.found this throw: https://github.com/magicleap/SuperGluePretrainedNetwork/blob/master/models/superglue.py#L143-L172