speechbrainteam commited on
Commit
604921e
1 Parent(s): dff7cbd

Update README.md

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