You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
# install kaldi-comptiable feature
|
|
pushd python_kaldi_features
|
|
python3 setup.py install
|
|
if [ $? != 0 ]; then
|
|
error_msg "Please check why kaldi feature install error!"
|
|
exit -1
|
|
fi
|
|
popd
|