Instructions to use EducativeCS2023/whisper-en-tiny-trained with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EducativeCS2023/whisper-en-tiny-trained with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="EducativeCS2023/whisper-en-tiny-trained")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("EducativeCS2023/whisper-en-tiny-trained") model = AutoModelForSpeechSeq2Seq.from_pretrained("EducativeCS2023/whisper-en-tiny-trained") - Notebooks
- Google Colab
- Kaggle
Commit ·
a04aa4e
1
Parent(s): 0a15280
update model card README.md
Browse files
README.md
CHANGED
|
@@ -16,8 +16,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 16 |
|
| 17 |
This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the None dataset.
|
| 18 |
It achieves the following results on the evaluation set:
|
| 19 |
-
- Loss:
|
| 20 |
-
- Wer:
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|
|
@@ -47,10 +47,10 @@ The following hyperparameters were used during training:
|
|
| 47 |
|
| 48 |
### Training results
|
| 49 |
|
| 50 |
-
| Training Loss | Epoch | Step | Validation Loss | Wer
|
| 51 |
-
|:-------------:|:-----:|:----:|:---------------:|:-----:|
|
| 52 |
-
|
|
| 53 |
-
|
|
| 54 |
|
| 55 |
|
| 56 |
### Framework versions
|
|
|
|
| 16 |
|
| 17 |
This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the None dataset.
|
| 18 |
It achieves the following results on the evaluation set:
|
| 19 |
+
- Loss: 1.4552
|
| 20 |
+
- Wer: 92.5515
|
| 21 |
|
| 22 |
## Model description
|
| 23 |
|
|
|
|
| 47 |
|
| 48 |
### Training results
|
| 49 |
|
| 50 |
+
| Training Loss | Epoch | Step | Validation Loss | Wer |
|
| 51 |
+
|:-------------:|:-----:|:----:|:---------------:|:--------:|
|
| 52 |
+
| 1.8547 | 1.0 | 60 | 2.0399 | 100.1585 |
|
| 53 |
+
| 1.0927 | 2.0 | 120 | 1.4552 | 92.5515 |
|
| 54 |
|
| 55 |
|
| 56 |
### Framework versions
|