66 lines
2.0 KiB
Docker
66 lines
2.0 KiB
Docker
# Please refer to the TRAINING documentation, "Basic Dockerfile for training"
|
|
|
|
FROM nvcr.io/nvidia/tensorflow:21.05-tf1-py3
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
# We need to purge python3-xdg because it's breaking STT install later with
|
|
# weird errors about setuptools
|
|
#
|
|
# libopus0 and libsndfile1 are dependencies for audio augmentation
|
|
#
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
cmake \
|
|
curl \
|
|
git \
|
|
libboost-all-dev \
|
|
libbz2-dev \
|
|
libopus0 \
|
|
libopusfile0 \
|
|
libsndfile1 \
|
|
unzip \
|
|
wget \
|
|
sox && \
|
|
apt-get purge -y python3-xdg && \
|
|
rm -rf /var/lib/apt/lists/
|
|
|
|
# Make sure pip and its deps are up-to-date
|
|
RUN pip3 install --upgrade pip wheel setuptools
|
|
|
|
WORKDIR /code
|
|
|
|
# Tool to convert output graph for inference
|
|
RUN wget https://github.com/coqui-ai/STT/releases/download/v0.9.3/convert_graphdef_memmapped_format.linux.amd64.zip -O temp.zip && \
|
|
unzip temp.zip && rm temp.zip
|
|
|
|
COPY native_client /code/native_client
|
|
COPY .git /code/.git
|
|
COPY training/coqui_stt_training/VERSION /code/training/coqui_stt_training/VERSION
|
|
COPY training/coqui_stt_training/GRAPH_VERSION /code/training/coqui_stt_training/GRAPH_VERSION
|
|
|
|
# Build CTC decoder first, to avoid clashes on incompatible versions upgrades
|
|
RUN cd native_client/ctcdecode && make NUM_PROCESSES=$(nproc) bindings
|
|
RUN pip3 install --upgrade native_client/ctcdecode/dist/*.whl
|
|
|
|
# Install STT
|
|
# - No need for the decoder since we did it earlier
|
|
# - There is already correct TensorFlow GPU installed on the base image,
|
|
# we don't want to break that
|
|
COPY setup.py /code/setup.py
|
|
COPY VERSION /code/VERSION
|
|
COPY training /code/training
|
|
RUN DS_NODECODER=y DS_NOTENSORFLOW=y pip3 install --upgrade -e .
|
|
|
|
# Build KenLM to generate new scorers
|
|
COPY kenlm /code/kenlm
|
|
RUN cd /code/kenlm && \
|
|
mkdir -p build && \
|
|
cd build && \
|
|
cmake .. && \
|
|
make -j $(nproc)
|
|
|
|
# Copy rest of the code and test training
|
|
COPY . /code
|
|
RUN ./bin/run-ldc93s1.sh && rm -rf ~/.local/share/stt
|