bofenghuang
commited on
Commit
•
bb99554
1
Parent(s):
1b3874c
updt README.md
Browse files
README.md
CHANGED
@@ -157,35 +157,38 @@ The following hyperparameters were used during training:
|
|
157 |
| 0.1052 | 9.84 | 35500 | 0.1428 | 0.1247 |
|
158 |
| 0.1044 | 9.98 | 36000 | 0.1430 | 0.1245 |
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
## Evaluation
|
161 |
|
162 |
1. To evaluate on `mozilla-foundation/common_voice_9_0`
|
163 |
|
164 |
```bash
|
165 |
python eval.py \
|
166 |
-
--model_id "bhuang/wav2vec2-xls-r-1b-
|
167 |
--dataset "mozilla-foundation/common_voice_9_0" \
|
168 |
--config "fr" \
|
169 |
--split "test" \
|
170 |
-
--log_outputs
|
|
|
171 |
```
|
172 |
|
173 |
2. To evaluate on `speech-recognition-community-v2/dev_data`
|
174 |
|
175 |
```bash
|
176 |
python eval.py \
|
177 |
-
--model_id "bhuang/wav2vec2-xls-r-1b-
|
178 |
--dataset "speech-recognition-community-v2/dev_data" \
|
179 |
--config "fr" \
|
180 |
--split "validation" \
|
181 |
--chunk_length_s 5.0 \
|
182 |
--stride_length_s 1.0 \
|
183 |
-
--log_outputs
|
|
|
184 |
```
|
185 |
-
|
186 |
-
### Framework versions
|
187 |
-
|
188 |
-
- Transformers 4.22.0.dev0
|
189 |
-
- Pytorch 1.12.0+cu113
|
190 |
-
- Datasets 2.4.0
|
191 |
-
- Tokenizers 0.12.1
|
|
|
157 |
| 0.1052 | 9.84 | 35500 | 0.1428 | 0.1247 |
|
158 |
| 0.1044 | 9.98 | 36000 | 0.1430 | 0.1245 |
|
159 |
|
160 |
+
### Framework versions
|
161 |
+
|
162 |
+
- Transformers 4.22.0.dev0
|
163 |
+
- Pytorch 1.12.0+cu113
|
164 |
+
- Datasets 2.4.0
|
165 |
+
- Tokenizers 0.12.1
|
166 |
+
|
167 |
+
|
168 |
## Evaluation
|
169 |
|
170 |
1. To evaluate on `mozilla-foundation/common_voice_9_0`
|
171 |
|
172 |
```bash
|
173 |
python eval.py \
|
174 |
+
--model_id "bhuang/wav2vec2-xls-r-1b-cv9-fr" \
|
175 |
--dataset "mozilla-foundation/common_voice_9_0" \
|
176 |
--config "fr" \
|
177 |
--split "test" \
|
178 |
+
--log_outputs \
|
179 |
+
--outdir "outputs/results_mozilla-foundatio_common_voice_9_0_with_lm"
|
180 |
```
|
181 |
|
182 |
2. To evaluate on `speech-recognition-community-v2/dev_data`
|
183 |
|
184 |
```bash
|
185 |
python eval.py \
|
186 |
+
--model_id "bhuang/wav2vec2-xls-r-1b-cv9-fr" \
|
187 |
--dataset "speech-recognition-community-v2/dev_data" \
|
188 |
--config "fr" \
|
189 |
--split "validation" \
|
190 |
--chunk_length_s 5.0 \
|
191 |
--stride_length_s 1.0 \
|
192 |
+
--log_outputs \
|
193 |
+
--outdir "outputs/results_speech-recognition-community-v2_dev_data_with_lm"
|
194 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|