scratcharchive / mountainsort_examples

Examples of using MountainSort spike sorting software.
27 stars 20 forks source link

jupyter notebook example fail #18

Open djsperka opened 5 years ago

djsperka commented 5 years ago

Installed today (thanks!), but ran into trouble in first jupyter example, at this line:

from mountainsort4_1_0 import sort_dataset as ms4_sort_dataset # MountainSort spike sorting

Error:


ModuleNotFoundError Traceback (most recent call last)

in 23 # imports from this repo 24 append_to_path(os.getcwd()+'/../../python') ---> 25 from mountainsort4_1_0 import sort_dataset as ms4_sort_dataset # MountainSort spike sorting 26 from validate_sorting_results import validate_sorting_results # Validation processors 27 from synthesize_dataset import synthesize_dataset # Synthesize a test dataset ModuleNotFoundError: No module named 'mountainsort4_1_0' I tried to locate the method, but can't find it. Guessing the module changed, or the method moved to another module?
Alkohost commented 5 years ago

Download this repo and specify a path like import sys sys.path.append('.../mountainsort_examples-master/python')