Name | Last Update | Last Commit 8dcb6dfcb61 – first commit | history |
---|---|---|---|
.. | |||
debian9.8-cpu | |||
ubuntu16.04-gpu | |||
README.md |
README.md
Kaldi Docker images
Kaldi offers two set of images: CPU-based images and GPU-based images. Daily builds of the latest version of the master branch (both CPU and GPU images) are pushed daily to DockerHub.
Using pre-built images
Sample usage of the CPU based images:
docker run -it kaldiasr/kaldi:latest bash
Sample usage of the GPU based images:
Note: use nvidia-docker to run the GPU images.
docker run -it --runtime=nvidia kaldiasr/kaldi:gpu-latest bash
Building images locally
For building the CPU-based image:
cd docker/debian9.8-cpu
docker build --tag kaldiasr/kaldi:latest .
and for GPU-based image:
cd docker/ubuntu16.04-gpu
docker build --tag kaldiasr/kaldi:gpu-latest .