This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add nancy voice * add ljspeech voice * docker instructions authored-by: jarbasai <jarbasai@mailfence.com>
- Loading branch information
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM tensorflow/tensorflow:1.8.0-py3 | ||
RUN apt-get update && apt-get install -y python3 python3-pip git llvm-8 | ||
RUN ln -s /usr/bin/llvm-config-8 /usr/bin/llvm-config | ||
|
||
RUN git clone https://github.com/keithito/tacotron /root/tacotron | ||
WORKDIR /root/tacotron | ||
RUN pip3 install -r requirements.txt | ||
|
||
RUN mkdir /root/tacotron_models | ||
RUN curl https://data.keithito.com/data/speech/tacotron-20180906.tar.gz -k --output /root/tacotron_models/tacotron-20180906.tar.gz | ||
WORKDIR /root/tacotron_models | ||
RUN tar x --file /root/tacotron_models/tacotron-20180906.tar.gz | ||
WORKDIR /root/tacotron | ||
|
||
CMD python3 /root/tacotron/demo_server.py --checkpoint /root/tacotron_models/tacotron-20180906/model.ckpt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM tensorflow/tensorflow:1.8.0-py3 | ||
RUN apt-get update && apt-get install -y python3 python3-pip git llvm-8 | ||
RUN ln -s /usr/bin/llvm-config-8 /usr/bin/llvm-config | ||
|
||
RUN git clone https://github.com/keithito/tacotron /root/tacotron | ||
WORKDIR /root/tacotron | ||
RUN git reset --hard 8edcd55b3f08f0492340e8b3ee60a693138f5473 | ||
RUN pip3 install -r requirements.txt | ||
|
||
RUN git clone https://github.com/ArkaneCow/tacotron-models /root/tacotron_models | ||
|
||
CMD python3 /root/tacotron/demo_server.py --checkpoint /root/tacotron_models/mxgray_nancy/model.ckpt-250000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters