Decoding
After Training, we can start decoding.
The command to start the decoding is quite simple:
cd /tmp/icefall
export PYTHONPATH=/tmp/icefall:$PYTHONPATH
cd egs/yesno/ASR
# We use CPU for decoding by setting the following environment variable
export CUDA_VISIBLE_DEVICES=""
./tdnn/decode.py
The output logs are given below:
For the more curious
./tdnn/decode.py --help
will print the usage information about ./tdnn/decode.py. For instance, you
can specify:
--epochto use which checkpoint for decoding
--avgto select how many checkpoints to use for model averaging
You usually try different combinations of --epoch and --avg and select
one that leads to the lowest WER (Word Error Rate).