Instructions to use facebook/wav2vec2-xls-r-300m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use facebook/wav2vec2-xls-r-300m with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForPreTraining processor = AutoProcessor.from_pretrained("facebook/wav2vec2-xls-r-300m") model = AutoModelForPreTraining.from_pretrained("facebook/wav2vec2-xls-r-300m") - Notebooks
- Google Colab
- Kaggle
Weights not initialized from the model checkpoint
#3
by migueltalka - opened
I'm getting Some weights of Wav2Vec2Model were not initialized from the model checkpoint at facebook/wav2vec2-base and are newly initialized: ['wav2vec2.encoder.pos_conv_embed.conv.parametrizations.weight.original0', 'wav2vec2.encoder.pos_conv_embed.conv.parametrizations.weight.original1']
Is this a real issue or can I ignore it?