HarunoriKawano / speaker-identification-with-tgp

Apache License 2.0
5 stars 1 forks source link

Testing method? #1

Open mayuravaani opened 3 weeks ago

mayuravaani commented 3 weeks ago

Hi,

Could you please provide details on how you test the model? Specifically, I am interested in understanding how the model is tested when using AAM Softmax for training.

When testing, are labels passed to the model as well? Or do you have a strategy to ensure that labels are not involved in the testing process?

Thank you for your assistance!

HarunoriKawano commented 2 weeks ago

aam-softmax is a strategy that makes gaps between labels while training. So, you can't use it for test data. I had trained the model twice: with aam-softmax and with just fully connected layer, and used fully connected layer for test.

mayuravaani commented 2 weeks ago

Thank you.