Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
import os
|
2 |
|
3 |
-
os.system("git clone
|
4 |
os.system("mv toucan_codebase/* .")
|
5 |
|
6 |
from run_model_downloader import download_models
|
7 |
from run_gradio_demo import TTSWebUI
|
8 |
|
9 |
download_models()
|
10 |
-
TTSWebUI(gpu_id="cpu", title="Design a Speaker", article="We use a GAN to generate a speaker embedding for the TTS to use. The GAN has a control mechanism integrated, so you can directly influence the generated embeddings in multiple intuitive ways! For the associated code and models, have a look at our GitHub: https://github.com/DigitalPhonetics/IMS-Toucan")
|
|
|
1 |
import os
|
2 |
|
3 |
+
os.system("git clone https://github.com/DigitalPhonetics/IMS-Toucan.git toucan_codebase")
|
4 |
os.system("mv toucan_codebase/* .")
|
5 |
|
6 |
from run_model_downloader import download_models
|
7 |
from run_gradio_demo import TTSWebUI
|
8 |
|
9 |
download_models()
|
10 |
+
TTSWebUI(gpu_id="cpu", title="Design a Speaker", article="We use a GAN to generate a speaker embedding for the TTS to use. The GAN has a control mechanism integrated, so you can directly influence the generated embeddings in multiple intuitive ways! When combining this with a bunch of simple heuristic controls that FastPitch enables, there's quite a lot that you can edit. For the associated code and models, have a look at our GitHub: https://github.com/DigitalPhonetics/IMS-Toucan")
|