Skip to content

Instantly share code, notes, and snippets.

@jordic
Created October 25, 2020 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jordic/ce7c90d68e3a9bcb9676f392cc853030 to your computer and use it in GitHub Desktop.
Save jordic/ce7c90d68e3a9bcb9676f392cc853030 to your computer and use it in GitHub Desktop.
CatotronCPU
FROM python:3.7.3
# based on a git clone from https://github.com/CollectivaT-dev/catotron-cpu
# plus embedding voices.
# also fixed requirements.txt
# -matplotlib==2.1.0
# +numba==0.48
# +matplotlib==3.3.2
# numpy==1.18.0
# inflect==0.2.5
# librosa==0.6.0
# @@ -7,7 +8,7 @@ tensorboardX==1.1
# Unidecode==1.0.22
# pillow
# pyaml==19.12.0
# -apex
# +apex==0.9.10.dev0
# tensorflow==1.15.0
# torch==1.3.1
# falcon==2.0.0
WORKDIR /app
COPY . /app/
RUN pip install --no-cache-dir -U pip && \
pip install --no-cache-dir -r requirements.txt
ENTRYPOINT ["python", "demo_server.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment