AlexMo commited on
Commit
8e757c3
1 Parent(s): 8fc4282

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - nl
4
+ license: apache-2.0
5
+ tags:
6
+ - hf-asr-leaderboard
7
+ - generated_from_trainer
8
+ datasets:
9
+ - mozilla-foundation/common_voice_11_0
10
+ metrics:
11
+ - wer
12
+ model-index:
13
+ - name: FIFA_WC22_WINNER_LANGUAGE_MODEL
14
+ results:
15
+ - task:
16
+ name: Automatic Speech Recognition
17
+ type: automatic-speech-recognition
18
+ dataset:
19
+ name: Common Voice 11.0
20
+ type: mozilla-foundation/common_voice_11_0
21
+ config: 'null'
22
+ split: None
23
+ args: 'config: nl, split: test'
24
+ metrics:
25
+ - name: Wer
26
+ type: wer
27
+ value: 13.5797
28
+ ---
29
+
30
+
31
+ # whisper-lt-finetune
32
+
33
+ This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the Common Voice 11.0 dataset.
34
+ It achieves the following results on the evaluation set:
35
+ - Loss: 0.2550
36
+ - Wer: 13.5797
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 1e-05
42
+ - train_batch_size: 16
43
+ - eval_batch_size: 8
44
+ - seed: 42
45
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
46
+ - lr_scheduler_type: linear
47
+ - lr_scheduler_warmup_steps: 250
48
+ - training_steps: 5000
49
+ - mixed_precision_training: Native AMP
50
+ ### Training results
51
+ | Training Loss | Epoch | Step | Validation Loss | Wer |
52
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|
53
+ | 0.1556 | 0.97 | 1000 | 0.2354 | 15.2781 |
54
+ | 0.0709 | 1.95 | 2000 | 0.2336 | 14.6419 |
55
+ | 0.0259 | 2.92 | 3000 | 0.2415 | 14.0186 |
56
+ | 0.0098 | 3.89 | 4000 | 0.2496 | 13.7355 |
57
+ | 0.0056 | 4.87 | 5000 | 0.2550 | 13.5797 |
58
+
59
+ ### Framework versions
60
+ - Transformers 4.26.0.dev0
61
+ - Pytorch 1.12.1+cu113
62
+ - Datasets 2.7.1
63
+ - Tokenizers 0.13.2