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
when I use :python main.py --task train --config configs/atari_spaceinvaders.yaml resume True device 'cuda:0'
then the following error happened:
Traceback (most recent call last):
File "main.py", line 1, in
from engine.utils import get_config
File "/home/l/Downloads/DiffSES/space/engine/utils.py", line 4, in
from space.config import cfg
ModuleNotFoundError: No module named 'space'
The text was updated successfully, but these errors were encountered:
I was trying to run the code as well and got a similar error message. Trace the error message for the lines with dependencies error. For example, here, check the file "/home/l/Downloads/DiffSES/space/engine/utils.py", line 4, and locate
from space.config import cfg
change it to:
from config import cfg
Then you will probably get more of such errors. Just change accordingly.
when I use :python main.py --task train --config configs/atari_spaceinvaders.yaml resume True device 'cuda:0'
then the following error happened:
Traceback (most recent call last):
File "main.py", line 1, in
from engine.utils import get_config
File "/home/l/Downloads/DiffSES/space/engine/utils.py", line 4, in
from space.config import cfg
ModuleNotFoundError: No module named 'space'
The text was updated successfully, but these errors were encountered: