Update README.md
Browse files
README.md
CHANGED
@@ -9,6 +9,11 @@ metrics:
|
|
9 |
model-index:
|
10 |
- name: Whisper Tiny GA-EN Speech Translation v.1.4
|
11 |
results: []
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
|
14 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
@@ -37,6 +42,18 @@ More information needed
|
|
37 |
|
38 |
## Training procedure
|
39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
### Training hyperparameters
|
41 |
|
42 |
The following hyperparameters were used during training:
|
@@ -71,4 +88,4 @@ The following hyperparameters were used during training:
|
|
71 |
- Transformers 4.39.2
|
72 |
- Pytorch 2.2.1+cu121
|
73 |
- Datasets 2.18.0
|
74 |
-
- Tokenizers 0.15.2
|
|
|
9 |
model-index:
|
10 |
- name: Whisper Tiny GA-EN Speech Translation v.1.4
|
11 |
results: []
|
12 |
+
datasets:
|
13 |
+
- ymoslem/IWSLT2023-GA-EN
|
14 |
+
language:
|
15 |
+
- ga
|
16 |
+
- en
|
17 |
---
|
18 |
|
19 |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
|
|
42 |
|
43 |
## Training procedure
|
44 |
|
45 |
+
### Experiment
|
46 |
+
|
47 |
+
- `language="english"` (instead of "welsh")
|
48 |
+
- Note: As this is a translation task into English, use `language="English"`
|
49 |
+
|
50 |
+
```
|
51 |
+
tokenizer = WhisperTokenizer.from_pretrained("openai/whisper-tiny",
|
52 |
+
cache_dir=cache_dir,
|
53 |
+
language="english",
|
54 |
+
task="translate")
|
55 |
+
```
|
56 |
+
|
57 |
### Training hyperparameters
|
58 |
|
59 |
The following hyperparameters were used during training:
|
|
|
88 |
- Transformers 4.39.2
|
89 |
- Pytorch 2.2.1+cu121
|
90 |
- Datasets 2.18.0
|
91 |
+
- Tokenizers 0.15.2
|