After setting up a conda environment on my Linux machine as described in the README, and issuing the command
python3.5 snn/experiments/run_sgd.py fc --layers 600 --sgd_epochs 20 --binary
I was getting the error
Traceback (most recent call last):
File "snn/experiments/run_sgd.py", line 6, in <module>
from snn.core import package_path
ImportError: No module named 'snn'
In fixed it by changing the lines 3 and 4 in snn/experiments/run_sgd.py, to
After setting up a conda environment on my Linux machine as described in the README, and issuing the command
python3.5 snn/experiments/run_sgd.py fc --layers 600 --sgd_epochs 20 --binary
I was getting the errorIn fixed it by changing the lines 3 and 4 in
snn/experiments/run_sgd.py
, towhere
PATH
is the absolute path to the repository folder.Perhaps this is something which should be mentioned in the README.