kaldi是一個(gè)語音識(shí)別領(lǐng)域廣泛使用的開源工具包,要想入門語音識(shí)別,學(xué)習(xí)kaldi吧
安裝前提:
有網(wǎng)
安裝步驟:
(1)從github上下載kaldi:
git clone https://github.com/kaldi-asr/kaldi.git kaldi --origin upstream
(2)檢查kaldi依賴的第三方庫(kù):
cd?kaldi/tools/extras
sh check_dependencies.sh
會(huì)有提示:
check_dependencies.sh: The following prerequisites are missing; install them first: automake autoconf sox gfortran libtool
(3)mac 下使用brew 安裝 automake?autoconf sox gfortran libtool,其中安裝gfortran會(huì)有一下提示,按照提示操作就好。
GNU Fortran is part of the GCC formula:brew install gcc
(4)進(jìn)入kaldi/tools,目錄:
make -j 8
(5)