Alvinn-aai commited on
Commit
a32c22a
·
1 Parent(s): 828108b

fix submission inits

Browse files
Files changed (1) hide show
  1. src/submission/submit.py +2 -2
src/submission/submit.py CHANGED
@@ -99,8 +99,8 @@ def add_new_solutions(
99
  "system_type": sys_type,
100
  "submission_id": submission_id,
101
  "submission_ts": submission_ts,
102
- "evaluation_id": float("nan"), # This will be set later when the evaluation is launched in the backend
103
- "evaluation_start_ts": "", # This will be set when the evaluation starts
104
  }
105
 
106
  ds = Dataset.from_pandas(submission_df).map(add_info)
 
99
  "system_type": sys_type,
100
  "submission_id": submission_id,
101
  "submission_ts": submission_ts,
102
+ "evaluation_id": "", # This will be set later when the evaluation is launched in the backend
103
+ "evaluation_start_ts": float("nan"), # This will be set when the evaluation starts
104
  }
105
 
106
  ds = Dataset.from_pandas(submission_df).map(add_info)