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