start.sh update
Browse files- .gitignore +2 -1
- app.py → flask_app.py +0 -0
- start.sh +2 -2
.gitignore
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
tts-hs-hifigan
|
2 |
README.md
|
3 |
test.py
|
4 |
-
steps.txt
|
|
|
|
1 |
tts-hs-hifigan
|
2 |
README.md
|
3 |
test.py
|
4 |
+
steps.txt
|
5 |
+
__pycache__
|
app.py → flask_app.py
RENAMED
File without changes
|
start.sh
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
source tts-hs-hifigan/bin/activate
|
2 |
-
CUDA_VISIBLE_DEVICES="" gunicorn -w 2 -b 0.0.0.0:5000
|
3 |
-
# set CUDA_VISIBLE_DEVICES
|
|
|
1 |
source tts-hs-hifigan/bin/activate
|
2 |
+
CUDA_VISIBLE_DEVICES="" gunicorn -w 2 -b 0.0.0.0:5000 flask_app:app --timeout 600 --daemon #--certfile ./certificate.pem --keyfile ./key.pem
|
3 |
+
# set CUDA_VISIBLE_DEVICES= "" for cpu, 0 for GPU-0, 1 for GPU-1 ...
|