Spoken Language Processing

kaldi 설치하기

햇농nongnong 2022. 11. 17. 19:43

 

Kaldi 란?


  • Kaldi 는 음성인식 및 신호 처리를 위한 오픈 소스 음성 인식 툴킷

 

 

Kaldi 설치 방법


  • Kaldi github 에서 다운로드 받고 환경 설정해주기

 

git clone https://github.com/kaldi-asr/kaldi.git

cd tools/
extras/check_dependencies.sh
CXX=g++-4.8 extras/check_dependencies.sh
sudo apt autoremove g++ 
sudo apt-get remove g++-4.8
sudo apt-get install g++
make
make CXX=g++-4.8
make CXX=g++
make -j 4

cd src/
./configure --shared
make depend -j 8
make -j 8

cd egs/yesno/s5
./run.sh

 

 (출처 : https://1ppoqq1.tistory.com/m/25)

 

 

 Reference

 

GitHub - kaldi-asr/kaldi: kaldi-asr/kaldi is the official location of the Kaldi project.

kaldi-asr/kaldi is the official location of the Kaldi project. - GitHub - kaldi-asr/kaldi: kaldi-asr/kaldi is the official location of the Kaldi project.

github.com