Does anyone know how I may use the sample submission file that was provided to me to generate predictions? When I load it up to retrieve the audio IDs and make predictions, all I get is an empty file.
Because when I submit my file on Zindi, I am getting the following error about missing IDs
```
Missing entries for IDs ID_e809b58c-4f05-4754-b98c-fbf236a88fbc, ID_7ce31a48-f507-4344-bc49-96de12417165, ID_b8f6fbc1-426f-4a4b-99db-c38d974658df, ID_0a7fb5e8-b852-4e6f-a1e1-0c7a03987bbb, and ID_dad2afbe-2046-4981-8476-2adadc2a862c
```
you can find the answer for a similar question in this discussion: https://zindi.africa/competitions/intron-afrispeech-200-automatic-speech-recognition-challenge/discussions/15278
If the problem persists, add this before saving your submission file:
submission = submission.fillna(' ')I'm a bit confused. I tried this, but I am still getting the same error. Or where exactly in the code should I use it?
I got this issue before and I solved it using '''index=False'''.
submission_df.to_csv(..., index=False).
Let me know if it solved your problem.