gooofy / zamia-speech

Open tools and data for cloudless automatic speech recognition
GNU Lesser General Public License v3.0
443 stars 86 forks source link

Install Zamia-speech English nnet3-chain model on Ubuntu #117

Open pengcheng-tech opened 3 years ago

pengcheng-tech commented 3 years ago

Hi,

I could not find a clear instruction on installing the model on a Ubuntu machine.

I am following the steps in issue#76 but replacing keyword "raspbian" to "debian". Is this doable? The steps I am trying is as below:

  1. Create /etc/apt/sources.list.d/zamia-ai.list

    sudo touch /etc/apt/sources.list.d/zamia-ai.list

    add:

    deb https://goofy.zamia.org/repo-ai/raspbian/stretch/armhf/ ./

    (not amd64)

  2. Manually install libttspico0_1.0+git20130326-9_armhf.deb and libttspico-

    utils_1.0+git20130326-9_armhf.deb

    wget http://ftp.us.debian.org/debian/pool/non-free/s/svox/libttspico0_1.0+git20130326-9_armhf.deb

    wget http://ftp.us.debian.org/debian/pool/non-free/s/svox/libttspico-utils_1.0+git20130326-9_armhf.deb

    sudo apt-get install gdebi

    sudo gdebi libttspico0_1.0+git20130326-9_armhf.deb

    sudo gdebi libttspico-utils_1.0+git20130326-9_armhf.deb

  3. Install programs

    wget -qO - http://goofy.zamia.org/repo-ai/debian/stretch/amd64/bofh.asc | sudo apt-key add -

    sudo apt-get update

    sudo apt-get install kaldi-chain-zamia-speech-de kaldi-chain-zamia-speech-en python-kaldiasr python-nltools pulseaudio-utils pulseaudio

Thanks