Skip to content

Commit e6e4f62

Browse files
committed
Handle the success parameter when using discretized manifold
1 parent c92292b commit e6e4f62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/local_pca_mnist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def get_subset_mnist(n: int = 1000):
6464
for k in range(10):
6565
p0 = data[torch.randint(high=N, size=[1], dtype=torch.long)] # 1xD
6666
p1 = data[torch.randint(high=N, size=[1], dtype=torch.long)] # 1xD
67-
C = DM.connecting_geodesic(p0, p1)
67+
C, _ = DM.connecting_geodesic(p0, p1)
6868
C.plot()
6969

7070
# p = C.begin

0 commit comments

Comments
 (0)