Some weights not initialized : harmless warning
#4
by
mpariente
- opened
Hello,
After loading according to your code, I'm getting the following message :
Some weights of AgeGenderModel were not initialized from the model checkpoint at audeering/wav2vec2-large-robust-24-ft-age-gender and are newly initialized: ['wav2vec2.encoder.pos_conv_embed.conv.parametrizations.weight.original1', 'wav2vec2.encoder.pos_conv_embed.conv.parametrizations.weight.original0']
You should probably TRAIN this model on a down-stream task to be able to use it for predictions and inference.
Is it expected and harmless ?
Thanks,
Manu
Hi Manu,
sorry for the late reply.
The warning can be considered harmless as it originates from migration of parameter names between versions of the transformers
library without updating the warning:
See: https://github.com/huggingface/transformers/issues/26796#issuecomment-1781551163
Best
Max