End of training
Browse files- README.md +21 -2
- lora_config.json +15 -0
README.md
CHANGED
@@ -1,14 +1,33 @@
|
|
1 |
---
|
2 |
library_name: peft
|
|
|
|
|
3 |
license: mit
|
4 |
base_model: openai/whisper-large-v3-turbo
|
5 |
tags:
|
|
|
|
|
|
|
|
|
|
|
6 |
- generated_from_trainer
|
|
|
|
|
7 |
metrics:
|
8 |
- wer
|
9 |
model-index:
|
10 |
- name: v3-turbo-cv17-telephonic-lora
|
11 |
-
results:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
|
14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -16,7 +35,7 @@ should probably proofread and complete it, then remove this comment. -->
|
|
16 |
|
17 |
# v3-turbo-cv17-telephonic-lora
|
18 |
|
19 |
-
This model is a fine-tuned version of [openai/whisper-large-v3-turbo](https://huggingface.co/openai/whisper-large-v3-turbo) on
|
20 |
It achieves the following results on the evaluation set:
|
21 |
- Loss: 0.1411
|
22 |
- Wer: 14.2090
|
|
|
1 |
---
|
2 |
library_name: peft
|
3 |
+
language:
|
4 |
+
- tr
|
5 |
license: mit
|
6 |
base_model: openai/whisper-large-v3-turbo
|
7 |
tags:
|
8 |
+
- asr
|
9 |
+
- whisper
|
10 |
+
- lora
|
11 |
+
- Turkish
|
12 |
+
- tr
|
13 |
- generated_from_trainer
|
14 |
+
datasets:
|
15 |
+
- dcl-ai-team/CommonVoice-17_tr_bandpass_filter_telephonic
|
16 |
metrics:
|
17 |
- wer
|
18 |
model-index:
|
19 |
- name: v3-turbo-cv17-telephonic-lora
|
20 |
+
results:
|
21 |
+
- task:
|
22 |
+
type: automatic-speech-recognition
|
23 |
+
name: Automatic Speech Recognition
|
24 |
+
dataset:
|
25 |
+
name: CommonVoice-17_tr_bandpass_filter_telephonic
|
26 |
+
type: dcl-ai-team/CommonVoice-17_tr_bandpass_filter_telephonic
|
27 |
+
metrics:
|
28 |
+
- type: wer
|
29 |
+
value: 14.208987174831321
|
30 |
+
name: Wer
|
31 |
---
|
32 |
|
33 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
35 |
|
36 |
# v3-turbo-cv17-telephonic-lora
|
37 |
|
38 |
+
This model is a fine-tuned version of [openai/whisper-large-v3-turbo](https://huggingface.co/openai/whisper-large-v3-turbo) on the CommonVoice-17_tr_bandpass_filter_telephonic dataset.
|
39 |
It achieves the following results on the evaluation set:
|
40 |
- Loss: 0.1411
|
41 |
- Wer: 14.2090
|
lora_config.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"r": 32,
|
3 |
+
"lora_alpha": 8,
|
4 |
+
"target_modules": [
|
5 |
+
"fc2",
|
6 |
+
"out_proj",
|
7 |
+
"fc1",
|
8 |
+
"q_proj",
|
9 |
+
"k_proj",
|
10 |
+
"v_proj"
|
11 |
+
],
|
12 |
+
"lora_dropout": 0.05,
|
13 |
+
"bias": "none",
|
14 |
+
"use_rslora": true
|
15 |
+
}
|