Now I'm trying to run the code in the Google Colab.
After checking the README.md file, I ran below code in the notebook.
!git clone https://github.com/QData/spacetimeformer.git
!pip install -r spacetimeformer/requirements.txt # SAME AS cd spacetimeformer && pip install -r requirements.txt
!pip install -e
After all the packages were successfully installed, I tried below code.
!python spacetimeformer/spacetimeformer/train.py spacetimeformer pems-bay .... (AS written in the `README.md`)
However, it raised an error below
Traceback (most recent call last):
File "spacetimeformer/train.py", line 11, in <module>
import spacetimeformer as stf
ModuleNotFoundError: No module named 'spacetimeformer'
I think it's because there's no module spacetimeformer.py in the repo, as well as spacetimeformer is not included in requirements.txt
Is there anything I missed while setting the environment?
Or did I make a mistake when running train.py?
Hello, thank you for opening great project!
Now I'm trying to run the code in the
Google Colab
. After checking theREADME.md
file, I ran below code in the notebook.After all the packages were successfully installed, I tried below code.
However, it raised an error below
I think it's because there's no module
spacetimeformer.py
in the repo, as well asspacetimeformer
is not included inrequirements.txt
Is there anything I missed while setting the environment? Or did I make a mistake when runningtrain.py
?Thank you for your help in advance :)