You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/pipeline_wav2letter/README.md
+11-10Lines changed: 11 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ This is an example pipeline for speech recognition using a greedy or Viterbi CTC
3
3
### Usage
4
4
5
5
More information about each command line parameters is available with the `--help` option. An example can be invoked as follows.
6
-
```
6
+
```bash
7
7
DATASET_ROOT = <Top>/<level>/<folder>
8
8
DATASET_FOLDER_IN_ARCHIVE = 'LibriSpeech'
9
9
@@ -25,19 +25,20 @@ python main.py \
25
25
--normalize \
26
26
--optimizer adadelta \
27
27
--scheduler reduceonplateau \
28
-
--epochs 30
28
+
--epochs 40
29
29
```
30
-
With these default parameters, we get a character error rate of 13.8% on dev-clean after 30 epochs.
31
30
32
-
### Output
31
+
With these default parameters, we get 13.3 %CER and 41.9 %WER on dev-clean after 40 epochs (character and word error rates, respectively) while training on train-clean. The tail of the output is the following.
33
32
34
-
The information reported at each iteration and epoch (e.g. loss, character error rate, word error rate) is printed to standard output in the form of one json per line, e.g.
One way to import the output in python with pandas is by saving the standard output to a file, and then using `pandas.read_json(filename, lines=True)`.
41
+
As can be seen in the output above, the information reported at each iteration and epoch (e.g. loss, character error rate, word error rate) is printed to standard output in the form of one json per line. One way to import the output in python with pandas is by saving the standard output to a file, and then using `pandas.read_json(filename, lines=True)`.
0 commit comments