Replies: 1 comment 4 replies
-
Which version did you install? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I followed demo code about unified CEBRA encoders cross different animals https://cebra.ai/docs/demo_notebooks/Demo_hippocampus_unified.html, it shown
AttributeError Traceback (most recent call last)
Cell In[5], line 30
27 num_neurons += dataset.neural.shape[1]
29 # Define the dataset
---> 30 dataset = cebra.data.UnifiedDataset(dataset for dataset in train_datasets)
32 # Set the masks for the dataset
33 # 'RandomNeuronMask' and 'RandomTimestepMask' are used to randomly mask neurons and timesteps
34 # during training, which helps the model to learn better representations.
35 dataset.set_masks({"RandomNeuronMask": (0.3, 0.9, 0.05),
36 "RandomTimestepMask": (0.3, 0.9, 0.05)})
AttributeError: module 'cebra.data' has no attribute 'UnifiedDataset'
it occured in both Windows and Linux system. I wondering if there is any update on replacing this 'UnifiedDataset' function on constructing a cross sessions/animals dataset?
Beta Was this translation helpful? Give feedback.
All reactions