Skip to content

Commit

Permalink
Fix issue #89; turns out it was only one character. Huh.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcinnes committed Jul 24, 2018
1 parent 3ee1c5e commit 70d8c08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion umap/umap_.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ def simplicial_set_embedding(
"""
graph = graph.tocoo()
graph.sum_duplicates()
n_vertices = graph.shape[0]
n_vertices = graph.shape[1]

if n_epochs <= 0:
# For smaller datasets we can use more epochs
Expand Down

0 comments on commit 70d8c08

Please sign in to comment.