File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ Character based statistics:
183
183
184
184
185
185
## Training
186
- Start training by invoking ` ipython asr/train.py` .
187
- Use ` ipython asr/train.py -- --delete` to start a clean run and remove the old checkpoints.
186
+ Start training by invoking ` asr/train.py ` .
187
+ Use ` asr/train.py -- --delete ` to start a clean run and remove the old checkpoints.
188
188
Please note that all commands are expected to be executed from the projects root folder.
189
189
The additional ` -- ` before the actual flags begin is used to indicate the end of IPython flags.
190
190
@@ -194,9 +194,14 @@ By default it can then be viewed on [localhost:6006](http://localhost:6006).
194
194
195
195
196
196
## Evaluation
197
- Evaluate the current model by invoking ` ipython asr/evaluate.py ` .
198
- Use ` ipython asr/evaluate.py -- --test ` to run on the test dataset, instead of the development
199
- set.
197
+ Evaluate the current model by invoking ` asr/evaluate.py ` .
198
+ Use ` asr/evaluate.py -- --dev ` to run on the development dataset, instead of the test set.
199
+
200
+
201
+ ## Prediction
202
+ To evaluate a given 16 kHz, mono WAV file use ` asr/predict.py --input <wav_path> ` .
203
+ Using ` asr/predict.py ` without ` --input ` flag evaluates the provided example file
204
+ ([ "I don't understand a word you just said."] ( data/examples/idontunderstandawordyoujustsaid.wav ) ).
200
205
201
206
202
207
<!--
You can’t perform that action at this time.
0 commit comments