emre commited on
Commit
cfa8bc5
1 Parent(s): 79f2393

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - tr
4
+ license: apache-2.0
5
+
6
+
7
+ datasets:
8
+ - mozilla-foundation/common_voice_11_0
9
+ metrics:
10
+ - wer
11
+ model-index:
12
+ - name: Whisper Medium TR - Emre Tasar
13
+ results:
14
+ - task:
15
+ name: Automatic Speech Recognition
16
+ type: automatic-speech-recognition
17
+ dataset:
18
+ name: Common Voice 11.0
19
+ type: mozilla-foundation/common_voice_11_0
20
+ config: tr
21
+ split: test[:10%]
22
+ args: 'config: tr, split: test'
23
+ metrics:
24
+ - name: Wer
25
+ type: wer
26
+ value: 18.51
27
+ ---
28
+
29
+
30
+ # Whisper TMedium TR - Emre Tasar
31
+
32
+ This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on the Common Voice 11.0 dataset.
33
+ It achieves the following results on the evaluation set:
34
+ - Loss: 0.211673
35
+ - Wer: 18.51
36
+
37
+ ## Model description
38
+
39
+ This model is the openai whisper medium transformer adapted for Turkish audio to text transcription. This model has weight decay set to 0.1 to cope with overfitting.
40
+
41
+ ## Intended uses & limitations
42
+
43
+ The model is available through its [HuggingFace web app](https://huggingface.co/spaces/emre/emre-whisper-medium-turkish-2)
44
+
45
+ ## Training and evaluation data
46
+
47
+ Data used for training is the initial 10% of train and validation of [Turkish Common Voice](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0/viewer/tr/train) 11.0 from Mozilla Foundation.
48
+
49
+ Weight decay showed to have slightly better result also on the evaluation dataset.
50
+
51
+ ## Training procedure
52
+
53
+ After loading the pre trained model, it has been trained on the dataset.
54
+
55
+ ### Training hyperparameters
56
+
57
+ The following hyperparameters were used during training:
58
+ - learning_rate: 1e-05
59
+ - train_batch_size: 16
60
+ - eval_batch_size: 8
61
+ - seed: 42
62
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
63
+ - lr_scheduler_type: linear
64
+ - lr_scheduler_warmup_steps: 500
65
+ - training_steps: 4000
66
+ - mixed_precision_training: Native AMP
67
+ - weight_decay: 0.1
68
+
69
+
70
+
71
+
72
+ ### Framework versions
73
+
74
+ - Transformers 4.26.0.dev0
75
+ - Pytorch 1.12.1+cu113
76
+ - Datasets 2.7.1
77
+ - Tokenizers 0.13.2