Skip to content

Latest commit

 

History

History
54 lines (48 loc) · 998 Bytes

README.md

File metadata and controls

54 lines (48 loc) · 998 Bytes

ASR

Automatic Speech Recognition (ASR)

Automatic Speech Recognition (or speech-to-text) systems transform speech into their corresponding text form, typically in the form of a word sequence

website: https://kaldi-asr.org/

Kaldi Installation Steps For Beginners!

Author : Suraj Durgesht

  1. Install Subversion
sudo apt-get install subversion
  1. Install Dependent Libraries
sudo apt-get install libblas-*
sudo apt-get install automake
sudo apt-get install libtool-*
sudo apt-get install libatlas-*
sudo apt-get install zlib1g-dev
sudo apt-get install g++-multilib
sudo apt-get install flac
  1. Installation via GitHub
git clone https://github.com/kaldi-asr/kaldi.git
cd kaldi/
cat INSTALL
cd tools/
cat INSTALL
make
  1. Check out dependencies
extras/check_dependencies.sh
nproc
  1. Install a language modeling toolkit IRSTLM
extras/install_irstlm.sh
  1. Instructions in kaldi/src/INSTALL.
cat INSTALL
./configure
make depend -j 4
make -j 4