Downloads · 30 days
0
Utkarshg02/my-wav2vec2-processor
my-wav2vec2-processor is a machine learning model from Utkarshg02. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
This is a Wav2Vec2 processor (tokenizer + feature extractor) for speech recognition.
Downloads · 30 days
0
Access
Public
Updated Aug 26, 2025
Repo size
—
Likes
0
Public
Click a slice to open those files.
.json1.9 KB · 42%
From the Hugging Face model README
This is a Wav2Vec2 processor (tokenizer + feature extractor) for speech recognition.
from transformers import Wav2Vec2Processor
processor = Wav2Vec2Processor.from_pretrained("Utkarshg02/my-wav2vec2-processor")
# Example: Processing an audio array
inputs = processor(audio_array, sampling_rate=16000, return_tensors="pt")
## Limitations and Biases
- Only provides preprocessing (feature extraction + tokenization).
- Base model is trained on English; may not work well on other languages or accents.
## License
This processor follows the same license as the base model: Apache 2.0.
## References
- [facebook/wav2vec2-base-960h](https://huggingface.co/facebook/wav2vec2-base-960h)
- [Wav2Vec2 Paper](https://arxiv.org/abs/2006.11477)