DEFT
DEFT copied to clipboard
No module named 'opts'
When i try to run scripts (train.py, train_prediction.py, test.py) i get this error:
Traceback (most recent call last):
File "train.py", line 13, in
Do you know how to fix that error?
the opts.py is not in the same folder as train.py. the opts.py is here. Try importing that directory using sys.path.append(os.path.abspath('lib/'))
before importing opts and see if that works.