I am using VGGish model as a part of my model to extract the feature of input audio. I want to know how I can import the parameters of the pretrained model directly and do some fine-tune in the future.
Actually, I have implemented that model using Pytorch because of some reasons. And in Pytorch, I can directly import the model using the following code.
model.load_state_dict(torch.load('xxx.pth'))
The '.pth' file save the parameters, and using those code I can import the parameters.
Actually I have not found the pretrained VGGish model parameters. So I want to know how to solve my problem.
@plakal @dpwe
I am using VGGish model as a part of my model to extract the feature of input audio. I want to know how I can import the parameters of the pretrained model directly and do some fine-tune in the future.
Actually, I have implemented that model using Pytorch because of some reasons. And in Pytorch, I can directly import the model using the following code.
model.load_state_dict(torch.load('xxx.pth'))
The '.pth' file save the parameters, and using those code I can import the parameters.
Actually I have not found the pretrained VGGish model parameters. So I want to know how to solve my problem.
@plakal @dpwe