speechbrainteam commited on
Commit
5ad1d36
1 Parent(s): 7f9e877

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -69,6 +69,29 @@ To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling
69
  ### Limitations
70
  The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  #### Referencing SpeechBrain
73
 
74
  ```
@@ -78,7 +101,7 @@ The SpeechBrain team does not provide any warranty on the performance achieved b
78
  year = {2021},
79
  publisher = {GitHub},
80
  journal = {GitHub repository},
81
- howpublished = {\url{https://github.com/speechbrain/speechbrain}},
82
  }
83
  ```
84
 
 
69
  ### Limitations
70
  The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets.
71
 
72
+ ### Training
73
+ The model was trained with SpeechBrain (Hash).
74
+ To train it from scratch follows these steps:
75
+ 1. Clone SpeechBrain:
76
+ ```bash
77
+ git clone https://github.com/speechbrain/speechbrain/
78
+ ```
79
+ 2. Install it:
80
+ ```
81
+ cd speechbrain
82
+ pip install -r requirements.txt
83
+ pip install -e .
84
+ ```
85
+
86
+ 3. Run Training:
87
+ ```
88
+ cd recipes/LibriSpeech/ASR/seq2seq/
89
+ python train.py hparams/train.yaml --data_folder=your_data_folder
90
+ ```
91
+
92
+ You can find our training results (models, logs, etc) [here]()
93
+
94
+
95
  #### Referencing SpeechBrain
96
 
97
  ```
 
101
  year = {2021},
102
  publisher = {GitHub},
103
  journal = {GitHub repository},
104
+ howpublished = {\\url{https://github.com/speechbrain/speechbrain}},
105
  }
106
  ```
107