-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reading inputs from pkl or h5 format #7
Comments
|
@albertoarturovergani Is this for reading a nix-hdf5 file or a generic hdf5 file? |
@JuliaSprenger they are generated by NixIO in https://github.com/SpikeAI/2020-11_brainhack_Project7/blob/main/dev/3_boilerplate.ipynb, so nix-hdf5 |
Then why don't you just use Neo and it's NixIO to load them again if you are anyway using Python? |
Just in case: import neo
with neo.Nixio('filename') as io:
block = io.read_block() |
AttributeError Traceback (most recent call last) AttributeError: module 'neo' has no attribute 'Nixio' |
sorry. my typo.
Python is case sensitive ;) |
Ok, now it's imported the nix-hdf5, but still to do the plotting. |
The aim is to get as input the pkl files or h5 file and making processing and visualization.
The text was updated successfully, but these errors were encountered: