brandeis-llc / clams-aapb-pua-kaldi-docker

A Docker image for the Kaldi speech recognition tool + training data from Pop Up Archive

Home Page:https://hub.docker.com/r/hipstas/kaldi-pop-up-archive/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized speech recognition with Kaldi + Pop Up Archive models

This Kaldi models are originally provided by Pop Up Archive, and the dockerized version was published at https://github.com/hipstas/kaldi-pop-up-archive. The goal of this fork is to update underlying kaldi system and streamline iamge buliding process.

References

Setup notes

Prerequisites

  • Docker
  • Pull image from Docker Hub (12GB compressed, 24GB uncompressed).
docker pull hipstas/kaldi-pop-up-archive:v1
  • Run the Docker container using one of the following commands. If you're using Linux, this will create a shared volume at /audio_in. On macOS or Windows, a folder called audio_in will appear on your desktop.

Linux:

docker run -it --name kaldi_pua --volume /audio_in/:/audio_in/ hipstas/kaldi-pop-up-archive:v1

macOS:

docker run -it --name kaldi_pua --volume ~/Desktop/audio_in/:/audio_in/ hipstas/kaldi-pop-up-archive:v1

Windows:

docker run -it --name kaldi_pua --volume C:\Users\***username_here***\Desktop\audio_in\:/audio_in/ hipstas/kaldi-pop-up-archive:v1

Check your memory allocation

  • Open your Docker preferences and make sure Docker has access to at least 6GB of RAM. The more, the better.

Run speech-to-text batch

  • Add media files to your /audio_in shared volume (WAV, MP3, or MP4 video).

  • In the Docker terminal session, enter the following commands to download and run the setup.sh script, which will start your job. When the batch is finished, your plain text and JSON transcript files will be written to /audio_in/transcripts/.

wget https://raw.githubusercontent.com/hipstas/kaldi-pop-up-archive/master/setup.sh
sh ./setup.sh

To keep your job from ending when you close the terminal window (or your connection to the server is interrupted), use nohup sh ./setup.sh instead, then close the window. If you'd like to monitor the job's status, open a new terminal session (docker exec -it kaldi_pua bash) and use the following command to display the end of your nohup log file every 3 seconds:

while :; do tail -n 30 nohup.out; sleep 3; done

Notes

  • Try running a test with one or two short media files before beginning a big job. If Kaldi doesn't have enough memory, it will crash without explanation. If this happens, try reducing the number of simultaneous jobs as described above.

  • Any commas, spaces, pipes, etc. in audio filenames will break the script and halt progress without producing any descriptive errors. To be safe, you may want to rename each file with a unique ID before starting. I'll fix this when I get a chance.

  • With this configuration, speech-to-text processing may take 5 times the duration of your audio input, or perhaps even longer. If you have memory to spare, you can speed things up by increasing the number of simultaneous jobs. Use the free -m command while Kaldi is running to see how you're doing.

Optional performance tweaks

  • In /kaldi/egs/american-archive-kaldi/sample_experiment/run.sh, adjust the following option to set the number of simultaneous jobs:
nj=4
  • In /kaldi/egs/wsj/s5/utils/run.pl:
$max_jobs_run = 10;

In /kaldi/egs/wsj/s5/steps/decode_fmllr.sh:

nj=4 in
max_active=2000
  • In /kaldi/egs/wsj/s5/steps/decode.sh:
nj=2

Manual method

Alternately, you can prepare your files and start the batch run manually.

  • Add some media files to the /audio_in/ directory.
cd /audio_in/
  • Make a 16kHz WAV copy of each file with ffmpeg.
for file in *.{wav,mp3,mp4,WAV,MP3,MP4}; do
base=$(basename """$file""" .mp3);
ffmpeg -i """$file""" -ac 1 -ar 16000 """$base"""_16kHz.wav;
done
  • Now move the 16kHz WAV files to a separate directory.
mkdir /audio_in_16khz/
mv *_16kHz.wav /audio_in_16khz/
  • Start the batch transcription run like so.
python /kaldi/egs/american-archive-kaldi/run_kaldi.py /kaldi/egs/american-archive-kaldi/sample_experiment/ /audio_in_16khz/
  • When Kaldi finishes processing an audio file, plain text and JSON transcripts will be written here:
/kaldi/egs/american-archive-kaldi/sample_experiment/output/

About

A Docker image for the Kaldi speech recognition tool + training data from Pop Up Archive

https://hub.docker.com/r/hipstas/kaldi-pop-up-archive/


Languages

Language:C 89.7%Language:Roff 2.7%Language:Shell 2.7%Language:Makefile 2.4%Language:Perl 1.8%Language:Python 0.4%Language:Dockerfile 0.4%Language:Pascal 0.0%