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 c92292b commit e6e4f62Copy full SHA for e6e4f62
examples/local_pca_mnist.py
@@ -64,7 +64,7 @@ def get_subset_mnist(n: int = 1000):
64
for k in range(10):
65
p0 = data[torch.randint(high=N, size=[1], dtype=torch.long)] # 1xD
66
p1 = data[torch.randint(high=N, size=[1], dtype=torch.long)] # 1xD
67
- C = DM.connecting_geodesic(p0, p1)
+ C, _ = DM.connecting_geodesic(p0, p1)
68
C.plot()
69
70
# p = C.begin
0 commit comments