Commit
·
533c5da
1
Parent(s):
f8a9048
Update README.md
Browse files
README.md
CHANGED
@@ -63,6 +63,28 @@ asr_model.transcribe_file("speechbrain/asr-crdnn-commonvoice-it/example-it.wav")
|
|
63 |
### Inference on GPU
|
64 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
### Limitations
|
67 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
68 |
|
@@ -75,7 +97,7 @@ The SpeechBrain team does not provide any warranty on the performance achieved b
|
|
75 |
year = {2021},
|
76 |
publisher = {GitHub},
|
77 |
journal = {GitHub repository},
|
78 |
-
howpublished = {
|
79 |
}
|
80 |
```
|
81 |
|
|
|
63 |
### Inference on GPU
|
64 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
65 |
|
66 |
+
### Training
|
67 |
+
The model was trained with SpeechBrain (Commit hash: '986a2175').
|
68 |
+
To train it from scratch follow these steps:
|
69 |
+
1. Clone SpeechBrain:
|
70 |
+
```bash
|
71 |
+
git clone https://github.com/speechbrain/speechbrain/
|
72 |
+
```
|
73 |
+
2. Install it:
|
74 |
+
```
|
75 |
+
cd speechbrain
|
76 |
+
pip install -r requirements.txt
|
77 |
+
pip install -e .
|
78 |
+
```
|
79 |
+
|
80 |
+
3. Run Training:
|
81 |
+
```
|
82 |
+
cd recipes/CommonVoice/ASR/seq2seq
|
83 |
+
python train.py hparams/train_it.yaml --data_folder=your_data_folder
|
84 |
+
```
|
85 |
+
|
86 |
+
You can find our training results (models, logs, etc) [here](https://drive.google.com/drive/folders/13i7rdgVX7-qZ94Rtj6OdUgU-S6BbKKvw?usp=sharing).
|
87 |
+
|
88 |
### Limitations
|
89 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
90 |
|
|
|
97 |
year = {2021},
|
98 |
publisher = {GitHub},
|
99 |
journal = {GitHub repository},
|
100 |
+
howpublished = {\\url{https://github.com/speechbrain/speechbrain}},
|
101 |
}
|
102 |
```
|
103 |
|