Instructions to use aadel4/Wav2vec_Classroom_WSP_FT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aadel4/Wav2vec_Classroom_WSP_FT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="aadel4/Wav2vec_Classroom_WSP_FT")# Load model directly from transformers import AutoProcessor, AutoModelForCTC processor = AutoProcessor.from_pretrained("aadel4/Wav2vec_Classroom_WSP_FT") model = AutoModelForCTC.from_pretrained("aadel4/Wav2vec_Classroom_WSP_FT", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,6 +20,8 @@ Wav2vec_Classroom_WSP_FT is an automatic speech recognition (ASR) model trained
|
|
| 20 |
|
| 21 |
This model is adapted from **[Wav2vec-Classroom](https://huggingface.co/aadel4/Wav2vec_Classroom)**, which was trained using continued pretraining (CPT) on large-scale unlabeled classroom speech data. The adaptation involves further fine-tuning to leverage weak transcriptions before final refinement on high-quality annotations.
|
| 22 |
|
|
|
|
|
|
|
| 23 |
**Use Case:**
|
| 24 |
- Speech-to-text transcription for classroom environments.
|
| 25 |
- Educational research and analysis of classroom discourse.
|
|
|
|
| 20 |
|
| 21 |
This model is adapted from **[Wav2vec-Classroom](https://huggingface.co/aadel4/Wav2vec_Classroom)**, which was trained using continued pretraining (CPT) on large-scale unlabeled classroom speech data. The adaptation involves further fine-tuning to leverage weak transcriptions before final refinement on high-quality annotations.
|
| 22 |
|
| 23 |
+
This model was originally trained using the fairseq library then ported into Huggingface.
|
| 24 |
+
|
| 25 |
**Use Case:**
|
| 26 |
- Speech-to-text transcription for classroom environments.
|
| 27 |
- Educational research and analysis of classroom discourse.
|