Primary competition visual

Intron AfriSpeech-200 Automatic Speech Recognition Challenge

$5 000 USD
Challenge completed over 2 years ago
Automatic Speech Recognition
430 joined
41 active
Starti
Feb 17, 23
Closei
May 28, 23
Reveali
May 28, 23
User avatar
jpandeinge
University of manchester
Using SampleSubmission to make predictions
Data · 29 Mar 2023, 14:13 · 3

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

```

Discussion 3 answers
User avatar
Siwar_NASRI

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 = pd.concat([SampleSubmission, dev_predictions_merge_test_spaces])
submission = submission.fillna(' ')
29 Mar 2023, 14:32
Upvotes 0
User avatar
jpandeinge
University of manchester

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?

User avatar
Isma

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.

29 Mar 2023, 18:11
Upvotes 0