I am getting missing ids error on submission my code for saving submission is submission.to_csv("submissionGeo.csv", index=False) the number of ids is 10523, I am missing something
*Note, in the test set there are multiple occurrences of unique ID, these unique IDs indicate the same point but at different time steps. When you make your submission you should only indicate one unique_ID in your submission file."
The issue may be from above. Your predictions need to be for each unique ID. Your number of predictions equals the number of instances in the test data . Probably, you need to recheck.
*Note, in the test set there are multiple occurrences of unique ID, these unique IDs indicate the same point but at different time steps. When you make your submission you should only indicate one unique_ID in your submission file."
The issue may be from above. Your predictions need to be for each unique ID. Your number of predictions equals the number of instances in the test data . Probably, you need to recheck.
Okay thank you very much 🙏
Were you able to solve this?
Yes I was able , I checked the format of the submission on the Infor page
Thanks.