speechbrainteam
commited on
Commit
•
c6aaccb
1
Parent(s):
665a175
Update README.md
Browse files
README.md
CHANGED
@@ -32,6 +32,28 @@ slu.decode_file("speechbrain/slu-timers-and-such-direct-librispeech-asr/math.wav
|
|
32 |
### Inference on GPU
|
33 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
### Limitations
|
36 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
37 |
|
@@ -44,7 +66,7 @@ title = {SpeechBrain},
|
|
44 |
year = {2021},
|
45 |
publisher = {GitHub},
|
46 |
journal = {GitHub repository},
|
47 |
-
howpublished = {
|
48 |
}
|
49 |
```
|
50 |
|
|
|
32 |
### Inference on GPU
|
33 |
To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method.
|
34 |
|
35 |
+
### Training
|
36 |
+
The model was trained with SpeechBrain (d254489a).
|
37 |
+
To train it from scratch follows these steps:
|
38 |
+
1. Clone SpeechBrain:
|
39 |
+
```bash
|
40 |
+
git clone https://github.com/speechbrain/speechbrain/
|
41 |
+
```
|
42 |
+
2. Install it:
|
43 |
+
```
|
44 |
+
cd speechbrain
|
45 |
+
pip install -r requirements.txt
|
46 |
+
pip install -e .
|
47 |
+
```
|
48 |
+
|
49 |
+
3. Run Training:
|
50 |
+
```
|
51 |
+
cd recipes/timers-and-such/direct
|
52 |
+
python train.py hparams/train.yaml --data_folder=your_data_folder
|
53 |
+
```
|
54 |
+
|
55 |
+
You can find our training results (models, logs, etc) [here](https://drive.google.com/drive/folders/18c2anEv8hx-ZjmEN8AdUA8AZziYIidON?usp=sharing)
|
56 |
+
|
57 |
### Limitations
|
58 |
The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
|
59 |
|
|
|
66 |
year = {2021},
|
67 |
publisher = {GitHub},
|
68 |
journal = {GitHub repository},
|
69 |
+
howpublished = {\\url{https://github.com/speechbrain/speechbrain}},
|
70 |
}
|
71 |
```
|
72 |
|