You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
simplicial_set_embedding states in it's docstring that it support numpy arrays as the intial positions for the embedding. However that doesn't work.
Steps/Code to reproduce bug
init: string
How to initialize the low dimensional embedding. Options are:
* 'spectral': use a spectral embedding of the fuzzy 1-skeleton
* 'random': assign initial embedding positions at random.
* A numpy array of initial embedding positions.
if init not in ['spectral', 'random']:
raise Exception("Initialization strategy not supported: %d" % init)
Expected behavior
Either remove the part of the docstring or better enable this.
The text was updated successfully, but these errors were encountered:
simplicial_set_embedding
states in it's docstring that it support numpy arrays as the intial positions for the embedding. However that doesn't work.Steps/Code to reproduce bug
Expected behavior
Either remove the part of the docstring or better enable this.
The text was updated successfully, but these errors were encountered: