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
The dispatcher fails sometime complaining about missing bagged_score.csv when collecting the results.
We get the following tracceback:
Traceback (most recent call last):
File "/opt/miniconda3/bin/ramp-launch", line 8, in <module>
sys.exit(start())
File "/opt/miniconda3/lib/python3.7/site-packages/ramp_engine/cli.py", line 122, in start
main()
File "/opt/miniconda3/lib/python3.7/site-packages/click/core.py", line 764, in __call__returnself.main(*args, **kwargs)
File "/opt/miniconda3/lib/python3.7/site-packages/click/core.py", line 717, in main
rv =self.invoke(ctx)
File "/opt/miniconda3/lib/python3.7/site-packages/click/core.py", line 1137, in invokereturn _process_result(sub_ctx.command.invoke(sub_ctx))
File "/opt/miniconda3/lib/python3.7/site-packages/click/core.py", line 956, in invokereturn ctx.invoke(self.callback, **ctx.params)
File "/opt/miniconda3/lib/python3.7/site-packages/click/core.py", line 555, in invokereturn callback(*args, **kwargs)
File "/opt/miniconda3/lib/python3.7/site-packages/ramp_engine/cli.py", line 90, in dispatcher
disp.launch()
File "/opt/miniconda3/lib/python3.7/site-packages/ramp_engine/dispatcher.py", line 297, in launchself.update_database_results(session)
File "/opt/miniconda3/lib/python3.7/site-packages/ramp_engine/dispatcher.py", line 263, in update_database_results
set_bagged_scores(session, submission_id, path_predictions)
File "/opt/miniconda3/lib/python3.7/site-packages/ramp_database/tools/submission.py", line 736, in set_bagged_scores
index_col=[0, 1])
File "/opt/miniconda3/lib/python3.7/site-packages/pandas/io/parsers.py", line 676, in parser_freturn _read(filepath_or_buffer, kwds)
File "/opt/miniconda3/lib/python3.7/site-packages/pandas/io/parsers.py", line 448, in _read
parser = TextFileReader(fp_or_buf, **kwds)
File "/opt/miniconda3/lib/python3.7/site-packages/pandas/io/parsers.py", line 880, in __init__self._make_engine(self.engine)
File "/opt/miniconda3/lib/python3.7/site-packages/pandas/io/parsers.py", line 1114, in _make_engineself._engine = CParserWrapper(self.f, **self.options)
File "/opt/miniconda3/lib/python3.7/site-packages/pandas/io/parsers.py", line 1891, in __init__self._reader = parsers.TextReader(src, **kwds)
File "pandas/_libs/parsers.pyx", line 374, in pandas._libs.parsers.TextReader.__cinit__
File "pandas/_libs/parsers.pyx", line 673, in pandas._libs.parsers.TextReader._setup_parser_sourceFileNotFoundError: [Errno 2] File /home/ramp/ramp_deployment/events/human_locomotion_datacamp2020/predictions/submission_000003805/bagged_scores.csv does not exist: '/home/ramp/ramp_deployment/events/human_locomotion_datacamp2020/predictions/submission_000003805/bagged_scores.csv'
The text was updated successfully, but these errors were encountered:
Maybe it's a timing issue? The submission was pulled before bagging finished at the end? How does the dispatcher know when the submission has finished training?
The dispatcher fails sometime complaining about missing
bagged_score.csv
when collecting the results.We get the following tracceback:
The text was updated successfully, but these errors were encountered: