Kaldi LibriSpeech model on Kaggle
Download and unpack model for use on Kaggle
Setting up the LibriSpeech Kaldi model on Kaggle: see here
%%capture
!wget http://kaldi-asr.org/models/13/0013_librispeech_v1_chain.tar.gz
!wget http://kaldi-asr.org/models/13/0013_librispeech_v1_extractor.tar.gz
!wget http://kaldi-asr.org/models/13/0013_librispeech_v1_lm.tar.gz
%%capture
!for i in *.tar.gz;do tar zxvf $i;done
!find . -type l
!find . -type l -exec ls -al {} \;
!rm exp/chain_cleaned/tdnn_1d_sp/configs/lda.mat
!rm exp/nnet3_cleaned/extractor/final.ie
!cp exp/chain_cleaned/tdnn_1d_sp/lda.mat exp/chain_cleaned/tdnn_1d_sp/configs/lda.mat
!cp exp/nnet3_cleaned/extractor/10.ie exp/nnet3_cleaned/extractor/final.ie