You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Traceback (most recent call last):
File "visualize/generate.py", line 26, in
from models.ce import make_model
ModuleNotFoundError: No module named 'models'
The text was updated successfully, but these errors were encountered:
This is because when you call 'generate.py' in the directory 'visualize', the path 'models/' is not exposed in the python path. So either add models in your python path either in the code directly using 'sys' or by modifying your environment variable manually (eg. 'PYTHONPATH="$PWD" python visualize/generate.py ....' if you are in the project parent directory).
Traceback (most recent call last):
File "visualize/generate.py", line 26, in
from models.ce import make_model
ModuleNotFoundError: No module named 'models'
The text was updated successfully, but these errors were encountered: