No submission error but not showing up

#55
by XaXB5EMu02Y6mJd - opened

I checked the gaia-benchmark/results_public dataset and the submission is not there. What should the next step be to troubleshoot?

Did you get any kind of message when submitting?

The initial submission did not display any message. Subsequent submissions said I had already submitted for the day.

Interesting, can you send me an email (my mail is in the GAIA paper) with your submission file and all the info you had put on the form, + the date when you submitted?

The root problem was a NaN as an answer. pandas is okay with this. The jsonlines library does not load NaN.

How to test for NaNs if jsonlines fails:

import pandas

sub = './logs/2025-05-10_14:29:22/test_submission.jsonl'
df = pandas.read_json(sub, lines=True)
df.isna().sum()
XaXB5EMu02Y6mJd changed discussion status to closed

Sign up or log in to comment