Instructions to use stillerman/stammer-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use stillerman/stammer-small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="stillerman/stammer-small")# Load model directly from transformers import AutoProcessor, AutoModelForSpeechSeq2Seq processor = AutoProcessor.from_pretrained("stillerman/stammer-small") model = AutoModelForSpeechSeq2Seq.from_pretrained("stillerman/stammer-small") - Notebooks
- Google Colab
- Kaggle
stillerman/stammer
Browse files
README.md
CHANGED
|
@@ -17,8 +17,8 @@ should probably proofread and complete it, then remove this comment. -->
|
|
| 17 |
|
| 18 |
This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
-
- Loss: 0.
|
| 21 |
-
- Wer:
|
| 22 |
|
| 23 |
## Model description
|
| 24 |
|
|
@@ -44,15 +44,17 @@ The following hyperparameters were used during training:
|
|
| 44 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 45 |
- lr_scheduler_type: linear
|
| 46 |
- lr_scheduler_warmup_steps: 10
|
| 47 |
-
- training_steps:
|
| 48 |
- mixed_precision_training: Native AMP
|
| 49 |
|
| 50 |
### Training results
|
| 51 |
|
| 52 |
| Training Loss | Epoch | Step | Validation Loss | Wer |
|
| 53 |
|:-------------:|:------:|:----:|:---------------:|:-------:|
|
| 54 |
-
| 0.
|
| 55 |
-
| 0.
|
|
|
|
|
|
|
| 56 |
|
| 57 |
|
| 58 |
### Framework versions
|
|
|
|
| 17 |
|
| 18 |
This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the None dataset.
|
| 19 |
It achieves the following results on the evaluation set:
|
| 20 |
+
- Loss: 0.4497
|
| 21 |
+
- Wer: 35.7430
|
| 22 |
|
| 23 |
## Model description
|
| 24 |
|
|
|
|
| 44 |
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
| 45 |
- lr_scheduler_type: linear
|
| 46 |
- lr_scheduler_warmup_steps: 10
|
| 47 |
+
- training_steps: 100
|
| 48 |
- mixed_precision_training: Native AMP
|
| 49 |
|
| 50 |
### Training results
|
| 51 |
|
| 52 |
| Training Loss | Epoch | Step | Validation Loss | Wer |
|
| 53 |
|:-------------:|:------:|:----:|:---------------:|:-------:|
|
| 54 |
+
| 0.9039 | 0.3968 | 25 | 0.7568 | 42.1687 |
|
| 55 |
+
| 0.4742 | 0.7937 | 50 | 0.4766 | 35.9438 |
|
| 56 |
+
| 0.3073 | 1.1905 | 75 | 0.4589 | 35.1406 |
|
| 57 |
+
| 0.3061 | 1.5873 | 100 | 0.4497 | 35.7430 |
|
| 58 |
|
| 59 |
|
| 60 |
### Framework versions
|