shangeth / SpeakerProfiling

Estimating the Age, Height, and Gender of a speaker with their speech signal. https://arxiv.org/pdf/2110.13653.pdf
MIT License
63 stars 22 forks source link

Input data size #4

Open jinsu35 opened 3 years ago

jinsu35 commented 3 years ago

Hi, I'm trying to convert your model to coreml model using the following code.

example_input = torch.rand(128, 40, 3) traced_model = torch.jit.trace(model, example_input)

I keep getting errors about the size of example input being wrong. Can you correct me on this? thanks