GIanlucaRub commited on
Commit
384a543
1 Parent(s): 5ab1cc8

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +80 -0
README.md ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - it
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: Whisper Tiny it 6
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: it
22
+ split: test[:10%]
23
+ args: 'config: it, split: test'
24
+ metrics:
25
+ - name: Wer
26
+ type: wer
27
+ value: 46.277038269550744
28
+ ---
29
+ # Whisper Tiny it 6
30
+
31
+ This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the Common Voice 11.0 dataset.
32
+ It achieves the following results on the evaluation set:
33
+ - Loss: 0.828768
34
+ - Wer: 46.277038
35
+
36
+ ## Model description
37
+
38
+ This model is the openai whisper small transformer adapted for Italian audio to text transcription.
39
+ As part of the hyperparameter tuning process weight decay set to 0.1, attention dropout, encoder dropout and decoder dropout have been set to 0.1,
40
+ the learning rate has been set to 1e-4, the number of decoder attention heads and encoder attention heads have been set to 8
41
+ however, it did not improved the performance on the evaluation set.
42
+
43
+ ## Intended uses & limitations
44
+
45
+ The model is available through its [HuggingFace web app](https://huggingface.co/spaces/GIanlucaRub/whisper-it)
46
+
47
+ ## Training and evaluation data
48
+
49
+ Data used for training is the initial 10% of train and validation of [Italian Common Voice](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0/viewer/it/train) 11.0 from Mozilla Foundation.
50
+ The dataset used for evaluation is the initial 10% of test of Italian Common Voice.
51
+
52
+
53
+ ## Training procedure
54
+
55
+ After loading the pre trained model, it has been trained on the dataset.
56
+
57
+ ### Training hyperparameters
58
+
59
+ The following hyperparameters were used during training:
60
+ - learning_rate: 1e-04
61
+ - train_batch_size: 16
62
+ - eval_batch_size: 8
63
+ - seed: 42
64
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
65
+ - lr_scheduler_type: linear
66
+ - lr_scheduler_warmup_steps: 500
67
+ - training_steps: 4000
68
+ - mixed_precision_training: Native AMP
69
+ ### Training results
70
+ | Training Loss | Epoch | Step | Validation Loss | Wer |
71
+ |:-------------:|:-----:|:----:|:---------------:|:-------:|
72
+ | 1.7168 | 0.95 | 1000 | 1.2107 | 64.8087 |
73
+ | 1.1073 | 1.91 | 2000 | 0.9891 | 53.0019 |
74
+ | 1.3410 | 2.86 | 3000 | 0.8742 | 47.7676 |
75
+ | 0.6761 | 3.82 | 4000 | 0.8288 | 46.2770 |
76
+ ### Framework versions
77
+ - Transformers 4.26.0.dev0
78
+ - Pytorch 1.12.1+cu113
79
+ - Datasets 2.7.1
80
+ - Tokenizers 0.13.2