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
{{ message }}
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
I am trying to run generate_vanilla_tabert_training_data.sh, however, I get this error -
Traceback (most recent call last):
File "/opt/conda/envs/tabert/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "/opt/conda/envs/tabert/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/tabert/utils/generate_vanilla_tabert_training_data.py", line 42, in
from utils.prepare_training_data import sample_context
ModuleNotFoundError: No module named 'utils.prepare_training_data'
Am I missing something, or is the file "prepare_training_data.py'" missing from the repo?
The text was updated successfully, but these errors were encountered:
You can replace the “from utils.prepare_training_data import sample_context" into the "from generate_vertical_tabert_training_data import sample_context".
You can replace the “from utils.prepare_training_data import sample_context" into the "from generate_vertical_tabert_training_data import sample_context".
You may encounter a "ModuleNotFoundError: No module named 'generate_vertical_tabert_training_data'" error. In that case, please modify the line "from generate_vertical_tabert_training_data import sample_context" to "from utils.generate_vertical_tabert_training_data import sample_context".
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am trying to run generate_vanilla_tabert_training_data.sh, however, I get this error -
Traceback (most recent call last):
File "/opt/conda/envs/tabert/lib/python3.6/runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "/opt/conda/envs/tabert/lib/python3.6/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/tabert/utils/generate_vanilla_tabert_training_data.py", line 42, in
from utils.prepare_training_data import sample_context
ModuleNotFoundError: No module named 'utils.prepare_training_data'
Am I missing something, or is the file "prepare_training_data.py'" missing from the repo?
The text was updated successfully, but these errors were encountered: