jckim commited on
Commit
ecce665
·
verified ·
1 Parent(s): aa22929

Model save

Browse files
Files changed (1) hide show
  1. README.md +69 -0
README.md ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: peft
3
+ license: mit
4
+ base_model: openai/whisper-large-v3-turbo
5
+ tags:
6
+ - base_model:adapter:openai/whisper-large-v3-turbo
7
+ - lora
8
+ - transformers
9
+ metrics:
10
+ - wer
11
+ model-index:
12
+ - name: model
13
+ results: []
14
+ ---
15
+
16
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
17
+ should probably proofread and complete it, then remove this comment. -->
18
+
19
+ # model
20
+
21
+ This model is a fine-tuned version of [openai/whisper-large-v3-turbo](https://huggingface.co/openai/whisper-large-v3-turbo) on the None dataset.
22
+ It achieves the following results on the evaluation set:
23
+ - Loss: 0.0984
24
+ - Wer: 12.1817
25
+
26
+ ## Model description
27
+
28
+ More information needed
29
+
30
+ ## Intended uses & limitations
31
+
32
+ More information needed
33
+
34
+ ## Training and evaluation data
35
+
36
+ More information needed
37
+
38
+ ## Training procedure
39
+
40
+ ### Training hyperparameters
41
+
42
+ The following hyperparameters were used during training:
43
+ - learning_rate: 1e-05
44
+ - train_batch_size: 16
45
+ - eval_batch_size: 8
46
+ - seed: 42
47
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
48
+ - lr_scheduler_type: linear
49
+ - lr_scheduler_warmup_steps: 500
50
+ - training_steps: 4000
51
+ - mixed_precision_training: Native AMP
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss | Wer |
56
+ |:-------------:|:-------:|:----:|:---------------:|:-------:|
57
+ | 0.0432 | 4.2373 | 1000 | 0.0928 | 13.0043 |
58
+ | 0.0211 | 8.4746 | 2000 | 0.0946 | 13.2132 |
59
+ | 0.0126 | 12.7119 | 3000 | 0.0959 | 12.5996 |
60
+ | 0.0136 | 16.9492 | 4000 | 0.0984 | 12.1817 |
61
+
62
+
63
+ ### Framework versions
64
+
65
+ - PEFT 0.17.1
66
+ - Transformers 4.55.2
67
+ - Pytorch 2.7.0+cu126
68
+ - Datasets 3.6.0
69
+ - Tokenizers 0.21.4