We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f63ecf + d7fa65f commit 9738e8dCopy full SHA for 9738e8d
.gitignore
@@ -26,3 +26,6 @@ ljspeech
26
*.npy
27
./*.wav
28
*.yml
29
+!docker-compose.yml
30
+/Pipfile
31
+/Pipfile.lock
docker-compose.yml
@@ -0,0 +1,11 @@
1
+version: '2.3'
2
+services:
3
+ tensorflowtts:
4
+ build: .
5
+ volumes:
6
+ - .:/workspace
7
+ runtime: nvidia
8
+ tty: true
9
+ command: /bin/bash
10
+ environment:
11
+ - CUDA_VISIBLE_DEVICES
dockerfile
@@ -0,0 +1,6 @@
+FROM tensorflow/tensorflow:2.2.0-gpu
+RUN apt-get update
+RUN apt-get install -y zsh tmux wget git
+RUN pip install git+https://github.com/TensorSpeech/TensorflowTTS.git
+RUN mkdir /workspace
+WORKDIR /workspace
0 commit comments