dlxj commited on
Commit ·
7a4dd08
1
Parent(s): f47e9a9
原来的 mozilla-foundation/common_voice_11_0 已失效
Browse files- readme.txt +11 -0
- requirements.txt +1 -0
readme.txt
CHANGED
|
@@ -6,3 +6,14 @@ see https://github.com/NVIDIA-NeMo/NeMo/blob/main/tutorials/asr/ASR_Example_Comm
|
|
| 6 |
从零开始训练或从已有模型微调
|
| 7 |
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
从零开始训练或从已有模型微调
|
| 7 |
|
| 8 |
|
| 9 |
+
conda create -n NeMo python==3.12 pip
|
| 10 |
+
conda activate NeMo
|
| 11 |
+
pip install datasets
|
| 12 |
+
|
| 13 |
+
python scripts/speech_recognition/convert_hf_dataset_to_nemo.py \
|
| 14 |
+
output_dir=${OUTPUT_DIR} \
|
| 15 |
+
path="mozilla-foundation/common_voice_11_0" \
|
| 16 |
+
name="eo" \
|
| 17 |
+
ensure_ascii=False \
|
| 18 |
+
use_auth_token=True
|
| 19 |
+
下载并转换数据集
|
requirements.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
datasets
|