- Notifications
You must be signed in to change notification settings - Fork 91
Closed
Description
I tried making an interactive plot but didn't work.
Running the following, given in the example:
`import cebra
import numpy as np
X = np.random.uniform(0, 1, (100, 50))
y = np.random.uniform(0, 10, (100, 5))
cebra_model = cebra.CEBRA(max_iterations=10)
cebra_model.fit(X, y)
embedding = cebra_model.transform(X)
cebra_time = np.arange(X.shape[0])
plt.figure(figsize=((10,8)))
fig = cebra.plot_embedding_interactive(embedding, embedding_labels=cebra_time)`
returns <Figure size 500x500 with 0 Axes>. I have plotly installed, so not sure what the issue might be.
Metadata
Metadata
Assignees
Labels
No labels