Hi, I had previously pickled microstate classes (using pycrostates) as json files. Since I updated to mne1.6.1 I now get an error when I try to use pickle.load() to read them back in:
ModK = pickle.load(Ks)
ModuleNotFoundError: No module named 'mne.io._digitization'
This does not happen when I go back to mne1.4.2.
I am not sure if mne.io._digitization was replaced and there is another way to read these types of files in now or if there are other ways around this. Please advise.
I am also not certain if turning them into josn files originally was the best choice, so if there is a better way to save that type of data I would be interested to hear what people recommend.
Thanks @richard and @mscheltienne, I see that now. I was simply unaware that there was a .save() method built in. I will read the docs a little closer next time. I will go use that now.