Hello, i am trying to submit results, but anyway i get the message: Missing entries for IDs ID_sQaPRMWO, ID_TanclvfR, ID_CNbveyvk, ID_MclKMhyP, ID_rNrmXOGD and more
I am sure that everything is okay and in my csv entries are not missing. What can i do to solve the problem?
Hi Dakozlov. I think the problem is your separator... It should be 'space' character ... Not ',' or ';'
Hope i've help.
Hello, thanks for advice, i have tried it, but it didn't help. I also tried many other ways, but nothing. So, i don't know how to solve it. Maybe organizers can help with it.
Hope you set index to False ( i.e index = False) while generating your csv file.
try this
sub = pd.read_csv('../input/malawi-news-classification-challenge/SampleSubmission.csv')
sub['Label']=your_predictions
sub.to_csv('submission.csv',index=False)