You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @RetroCirce , I want to thank you for your great work!!!!
I am playing around the model checkpoint you provided (HTSAT_AudioSet_Saved_6.ckpt).
I can successfully load the model checkpoint and make the predictions. However, the probability summation is not 1 and after I do the softmax, the resulting prediction doesn't make sense to me, since the probability is super low. Do you have any insight or ideas about why this is the case?
The siren audio file I tried on the model and I believed it should be detected as either 323,/m/04qvtq,"Police car (siren)",
or 324,/m/012n7d,"Ambulance (siren)", but it is detected as music instead.
The colab demo
Appreciate the great work again, and hope to gain insight from you!!!
Glad that you like the model!
Thank you for your implementation and pull request. I will review it on weekends and post my comments if I have questions.
Regarding the siren sound, I think the first example does sound more like a “trunk” and “music” (flute) sound in the AudioSet. Note that the siren is usually a high-frequency interwoven sound related to ambulance and police car. I assume that the second example describes this sound better.
Regarding the low probability, I think you may not sum them to one because the training is using BCE with Sigmoid instead of CE with Softmax.
In that, each event is classified independently so the first big value (instead of the softmax) is the right probability i think.
Hi @RetroCirce , I want to thank you for your great work!!!!
I am playing around the model checkpoint you provided (
HTSAT_AudioSet_Saved_6.ckpt
).I can successfully load the model checkpoint and make the predictions. However, the probability summation is not 1 and after I do the softmax, the resulting prediction doesn't make sense to me, since the probability is super low. Do you have any insight or ideas about why this is the case?
The siren audio file I tried on the model and I believed it should be detected as either
323,/m/04qvtq,"Police car (siren)"
,or
324,/m/012n7d,"Ambulance (siren)"
, but it is detected as music instead.The colab demo
Appreciate the great work again, and hope to gain insight from you!!!
Before softmax
After softmax
The text was updated successfully, but these errors were encountered: