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
Thanks very much for sharing this amazing dataset.
I am trying to load it, and have succeeded in loading the numpy objects, but struggling to understand what the objects contain and how to access their contents. Is there any documentation on what these structures contain? (I tried running the code but got errors due to missing libraries.)
The text was updated successfully, but these errors were encountered:
What worked for me was to import pytorch and then run np.load(filename, allow_pickle=True).item(), which returns a python dictionary. Without .item() I couldn't get things out of the dictionary.
PS we designed a file naming convention that makes it easy for people to know what is in neurophysiology data files without needing any documentation - described here .
Thanks very much for sharing this amazing dataset.
I am trying to load it, and have succeeded in loading the numpy objects, but struggling to understand what the objects contain and how to access their contents. Is there any documentation on what these structures contain? (I tried running the code but got errors due to missing libraries.)
The text was updated successfully, but these errors were encountered: