Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nocotan committed Apr 3, 2021
1 parent c1c4cce commit d069e62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_alpha_geodesic.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ def test_value_inf(self):
b = torch.Tensor([[0.4, 0.4, 0.2], [0.2, 0.1, 0.7]])

g = alpha_geodesic(a, b, alpha=100, lmd=0.5)
res = torch.max(a, b)
res = torch.min(a, b)

self.assertTrue(torch.equal(g, res))

0 comments on commit d069e62

Please sign in to comment.