We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb7d40 commit 89a2e0aCopy full SHA for 89a2e0a
test/test_gromov.py
@@ -39,7 +39,7 @@ def test_gromov():
39
np.testing.assert_allclose(
40
q, G.sum(0), atol=1e-04) # cf convergence gromov
41
42
- Id = (1 / 1.0*n_samples) * np.eye(n_samples, n_samples)
+ Id = (1 / (1.0 * n_samples)) * np.eye(n_samples, n_samples)
43
44
45
G, np.flipud(Id), atol=1e-04)
@@ -193,7 +193,7 @@ def test_fgw():
193
194
q, G.sum(0), atol=1e-04) # cf convergence fgw
195
196
197
198
199
G, np.flipud(Id), atol=1e-04) # cf convergence gromov
0 commit comments