Instructions to use anderloh/FineTunedWav2VecModel with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use anderloh/FineTunedWav2VecModel with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="anderloh/FineTunedWav2VecModel")# Load model directly from transformers import AutoProcessor, AutoModelForAudioClassification processor = AutoProcessor.from_pretrained("anderloh/FineTunedWav2VecModel") model = AutoModelForAudioClassification.from_pretrained("anderloh/FineTunedWav2VecModel") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoProcessor, AutoModelForAudioClassification
processor = AutoProcessor.from_pretrained("anderloh/FineTunedWav2VecModel")
model = AutoModelForAudioClassification.from_pretrained("anderloh/FineTunedWav2VecModel")Quick Links
README.md exists but content is empty.
- Downloads last month
- 8
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("audio-classification", model="anderloh/FineTunedWav2VecModel")