Skip to content

Commit 444f6bc

Browse files
authored
Merge pull request #2 from TensorSpeech/master
Update
2 parents a53a516 + 8f42100 commit 444f6bc

File tree

235 files changed

+18710
-5023
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+18710
-5023
lines changed

.gitattributes

100644100755
File mode changed.

.github/workflows/ci.yaml

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
strategy:
1717
max-parallel: 10
1818
matrix:
19-
python-version: [3.6]
20-
tensorflow-version: [2.1.0]
19+
python-version: [3.7]
20+
tensorflow-version: [2.3.0]
2121
steps:
2222
- uses: actions/checkout@master
2323
- uses: actions/setup-python@v1

.gitignore

100644100755
Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
.\#*
77
*DS_Store
88
out.txt
9-
TensorflowTTS.egg-info/
9+
TensorFlowTTS.egg-info/
1010
doc/_build
1111
slurm-*.out
1212
tmp*
@@ -32,3 +32,15 @@ ljspeech
3232
/datasets
3333
/examples/tacotron2/exp/
3434
/temp/
35+
LibriTTS/
36+
dataset/
37+
mfa/
38+
kss/
39+
baker/
40+
libritts/
41+
dump_baker/
42+
dump_ljspeech/
43+
dump_kss/
44+
dump_libritts/
45+
/examples/*/*
46+
/notebooks/test_saved/

LICENSE

100644100755
File mode changed.

README.md

100644100755
Lines changed: 119 additions & 93 deletions
Large diffs are not rendered by default.

docker-compose.yml

100644100755
File mode changed.

dockerfile

100644100755
File mode changed.

examples/android/.gitignore

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Android Studio
2+
*.iml
3+
.gradle
4+
/local.properties
5+
/.idea
6+
.DS_Store
7+
/build
8+
/captures
9+
10+
# Built application files
11+
*.apk
12+
!prebuiltapps/*.apk
13+
*.ap_
14+
15+
# Files for the Dalvik VM
16+
*.dex
17+
18+
# Java class files
19+
*.class
20+
21+
# Generated files
22+
bin/
23+
gen/
24+
25+
# Gradle files
26+
.gradle/
27+
build/
28+
*/build/
29+
30+
# Local configuration file (sdk path, etc)
31+
local.properties
32+
33+
# Proguard folder generated by Eclipse
34+
proguard/
35+
36+
# Log Files
37+
*.log
38+
39+
# project
40+
project.properties
41+
.classpath
42+
.project
43+
.settings/
44+
45+
# Intellij project files
46+
*.ipr
47+
*.iws
48+
.idea/
49+
app/.gradle/
50+
.idea/libraries
51+
.idea/workspace.xml
52+
.idea/vcs.xml
53+
.idea/scopes/scope_setting.xml
54+
.idea/moudles.xml
55+
.idea/misc.xml
56+
.idea/inspectionProfiles/Project_Default.xml
57+
.idea/inspectionProfiles/profiles_setting.xml
58+
.idea/encodings.xml
59+
.idea/.name

examples/android/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
### Android Demo
2+
3+
This is a simple Android demo which will load converted FastSpeech2 and Multi-Band MelGAN modules to synthesize audio.
4+
In order to optimize the synthesize speed, two LinkedBlockingQueues have been implemented.
5+
6+
7+
### HOW-TO
8+
1. Import this project into Android Studio.
9+
2. Run the app!
10+
11+
### LICENSE
12+
The license use for this code is [CC BY-NC 3.0](https://creativecommons.org/licenses/by-nc/3.0/). Please read the license carefully before you use it.
13+
14+
### Contributors
15+
[Xuefeng Ding](https://github.com/mapledxf)

examples/android/app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

0 commit comments

Comments
 (0)