Skip to content

Commit b77dffe

Browse files
committed
🤾 Update Dockerfile, setup.py to TensorFlow 2.6.0
1 parent e47308b commit b77dffe

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ This repository is tested on Ubuntu 18.04 with:
6060
- Python 3.7+
6161
- Cuda 10.1
6262
- CuDNN 7.6.5
63-
- Tensorflow 2.2/2.3
63+
- Tensorflow 2.2/2.3/2.4/2.5/2.6
6464
- [Tensorflow Addons](https://github.com/tensorflow/addons) >= 0.10.0
6565

66-
Different Tensorflow version should be working but not tested yet. This repo will try to work with the latest stable TensorFlow version. **We recommend you install TensorFlow 2.3.0 to training in case you want to use MultiGPU.**
66+
Different Tensorflow version should be working but not tested yet. This repo will try to work with the latest stable TensorFlow version. **We recommend you install TensorFlow 2.6.0 to training in case you want to use MultiGPU.**
6767

6868
## Installation
6969
### With pip

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '2.3'
1+
version: '2.6'
22
services:
33
tensorflowtts:
44
build: .

dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
FROM tensorflow/tensorflow:2.3.1-gpu
1+
FROM tensorflow/tensorflow:2.6.0-gpu
22
RUN apt-get update
33
RUN apt-get install -y zsh tmux wget git libsndfile1
44
RUN pip install ipython && \
5-
pip install git+https://github.com/TensorSpeech/TensorflowTTS.git
5+
pip install git+https://github.com/TensorSpeech/TensorflowTTS.git && \
6+
pip install git+https://github.com/repodiac/german_transliterate.git#egg=german_transliterate
67
RUN mkdir /workspace
78
WORKDIR /workspace

setup.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
if LooseVersion(sys.version) < LooseVersion("3.6"):
1111
raise RuntimeError(
12-
"Tensorflow TTS requires python >= 3.6, "
12+
"TensorFlow TTS requires python >= 3.6, "
1313
"but your Python version is {}".format(sys.version)
1414
)
1515

@@ -22,7 +22,7 @@
2222
# TODO(@dathudeptrai) update requirement if needed.
2323
requirements = {
2424
"install": [
25-
"tensorflow-gpu==2.3.1",
25+
"tensorflow-gpu==2.6.0",
2626
"tensorflow-addons>=0.10.0",
2727
"setuptools>=38.5.1",
2828
"huggingface_hub==0.0.8",
@@ -73,9 +73,9 @@
7373
name="TensorFlowTTS",
7474
version="0.0",
7575
url="https://github.com/tensorspeech/TensorFlowTTS",
76-
author="Minh Nguyen Quan Anh, Eren Gölge, Kuan Chen, Dawid Kobus, Takuya Ebata, Trinh Le Quang, Yunchao He, Alejandro Miguel Velasquez",
76+
author="Minh Nguyen Quan Anh, Alejandro Miguel Velasquez, Dawid Kobus, Eren Gölge, Kuan Chen, Takuya Ebata, Trinh Le Quang, Yunchao He",
7777
author_email="[email protected]",
78-
description="TensorFlowTTS: Real-Time State-of-the-art Speech Synthesis for Tensorflow 2",
78+
description="TensorFlowTTS: Real-Time State-of-the-art Speech Synthesis for TensorFlow 2",
7979
long_description=open(os.path.join(dirname, "README.md"), encoding="utf-8").read(),
8080
long_description_content_type="text/markdown",
8181
license="Apache-2.0",
@@ -88,6 +88,7 @@
8888
classifiers=[
8989
"Programming Language :: Python :: 3.6",
9090
"Programming Language :: Python :: 3.7",
91+
"Programming Language :: Python :: 3.8",
9192
"Intended Audience :: Science/Research",
9293
"Operating System :: POSIX :: Linux",
9394
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)