Update README.md
Browse files
README.md
CHANGED
@@ -57,4 +57,11 @@ predictions = asr_classifier.classify_file("audio_file.wav", device)
|
|
57 |
print(predictions)
|
58 |
```
|
59 |
|
|
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
print(predictions)
|
58 |
```
|
59 |
|
60 |
+
## Training
|
61 |
|
62 |
+
To fine-tune this model, you need to run:
|
63 |
+
```
|
64 |
+
python train.py hyperparams.yaml
|
65 |
+
```
|
66 |
+
|
67 |
+
```train.py``` file contains the functions necessary for training the model and ```hyperparams.yaml``` contains the hyperparameters. For more details about training the model, you can check the [SpeechBrain](https://speechbrain.github.io) documentation.
|