Primary competition visual

InstaDeep Enzyme Classification Challenge

Job Interview
Challenge completed almost 5 years ago
Classification
520 joined
70 active
Starti
Nov 17, 20
Closei
Feb 21, 21
Reveali
Feb 21, 21
Submission IDs issue
Data · 6 Feb 2021, 10:38 · 3

Hello. I have this error when submitting "Missing entries for IDs 08841052, 103933E1, 33476E28" but these IDs don't exist in the samplesubmission.csv and test.csv

Discussion 3 answers
User avatar
_MUFASA_

Hi !

try not to save the indexes when saving your csv file

e.g : yourdataFrame.to_csv('my_submission', index=False) # by default index in set to True by pandas

6 Feb 2021, 10:41
Upvotes 0

I had this issue because i've used excel. Excel automatically transform data with E ending to numbers. 1E3 will change to 1000.

6 Feb 2021, 14:42
Upvotes 0

Thank you for your responses. it does work with dataFrame_name.to_csv('my_submission.csv', index=False)

6 Feb 2021, 16:02
Upvotes 0