AlexMo commited on
Commit
1143bc3
1 Parent(s): 40d9d2f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -0
README.md ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: 14.261890699371158
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.2588
36
+ - Wer: 14.2619
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: 4000
49
+ - mixed_precision_training: Native AMP
50
+ ### Training results
51
+ | Training Loss | Epoch | Step | Validation Loss | Wer |
52
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|
53
+ | 0.0783 | 1.3 | 1000 | 0.2478 | 15.5647 |
54
+ | 0.0287 | 2.6 | 2000 | 0.2441 | 14.3765 |
55
+ | 0.0087 | 3.9 | 3000 | 0.2516 | 14.3349 |
56
+ | 0.0021 | 5.19 | 4000 | 0.2588 | 14.2619 |
57
+
58
+ ### Framework versions
59
+ - Transformers 4.26.0.dev0
60
+ - Pytorch 1.12.1+cu113
61
+ - Datasets 2.7.1
62
+ - Tokenizers 0.13.2