Last active
June 15, 2019 15:03
-
-
Save HudsonHuang/078678834ab4c05d0700c9f8613ac8c6 to your computer and use it in GitHub Desktop.
kaldi_install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/kaldi-asr/kaldi.git kaldi --origin upstream | |
cd kaldi/tools | |
make -j 4 | |
# NOTE: If error happend, run this command and apt-get install necessary packages: | |
# sh ./extras/check_dependencies.sh | |
cd ../src/ | |
./configure --shared | |
make depend -j 4 | |
make -j 4 | |
./run.sh | |
# If the following result is printed, the installation was successful | |
# %WER 0.00 [ 0 / 232, 0 ins, 0 del, 0 sub ] exp/mono0a/decode_test_yesno/wer_10_0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment