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.
16 lines
372 B
16 lines
372 B
#!/bin/bash
|
|
|
|
# install openblas, kaldi before
|
|
|
|
test -d Montreal-Forced-Aligner || git clone https://github.com/MontrealCorpusTools/Montreal-Forced-Aligner.git
|
|
|
|
pushd Montreal-Forced-Aligner && python setup.py install && popd
|
|
|
|
test -d kaldi || { echo "need install kaldi first"; exit 1;}
|
|
|
|
mfa thirdparty kaldi $PWD/kaldi
|
|
|
|
mfa thirdparty validate
|
|
|
|
echo "install mfa pass."
|