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
$ ./run_micro_services.sh
Experiment will be run without saving current version of the code/config
Running Task Data Generation
Traceback (most recent call last):
File "attention/services/create_copy_task/create_copy_task.py", line 1, in <module>
from tqdm import trange
ModuleNotFoundError: No module named 'tqdm'
Run Task Data Generation
Run Attention Traininig
Traceback (most recent call last):
File "attention/services/attention_train/attentiontrain.py", line 6, in <module>
from attention.utils.config import AttrDict, RunConfig
ModuleNotFoundError: No module named 'attention'
$ ./run_micro_services.sh
Experiment will be run without saving current version of the code/config
Running Task Data Generation
Traceback (most recent call last):
File "attention/services/create_copy_task/create_copy_task.py", line 9, in <module>
from attention.utils.config import AttrDict
ModuleNotFoundError: No module named 'attention'
Run Task Data Generation
Run Attention Traininig
Traceback (most recent call last):
File "attention/services/attention_train/attentiontrain.py", line 6, in <module>
from attention.utils.config import AttrDict, RunConfig
ModuleNotFoundError: No module named 'attention'
OS: Ubuntu Bionic.
Any ideas?
The text was updated successfully, but these errors were encountered:
and change attention/services/create_copy_task/create_copy_task.py to:
from config import AttrDict
and similar change to attention/services/attention_train/attentiontrain.py
and similar copy/change for other things reference from top of attentiontrain.py
etc.
It may end up working that way, but it's hacky.
Gives:
So tried:
But then get:
OS: Ubuntu Bionic.
Any ideas?
The text was updated successfully, but these errors were encountered: