Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
aad075c
1
Parent(s):
69b575f
Fix import statement for spaces in app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
|
|
1 |
import torch
|
2 |
from TTS.tts.configs.xtts_config import XttsConfig
|
3 |
from TTS.tts.models.xtts import Xtts
|
4 |
from pathlib import Path
|
5 |
import gradio as gr
|
6 |
-
import spaces
|
7 |
|
8 |
CONFIG_URL = 'https://huggingface.co/OmarSamir/EGTTS-V0.1/resolve/main/config.json'
|
9 |
VOCAB_URL = 'https://huggingface.co/OmarSamir/EGTTS-V0.1/resolve/main/vocab.json'
|
|
|
1 |
+
import spaces
|
2 |
import torch
|
3 |
from TTS.tts.configs.xtts_config import XttsConfig
|
4 |
from TTS.tts.models.xtts import Xtts
|
5 |
from pathlib import Path
|
6 |
import gradio as gr
|
|
|
7 |
|
8 |
CONFIG_URL = 'https://huggingface.co/OmarSamir/EGTTS-V0.1/resolve/main/config.json'
|
9 |
VOCAB_URL = 'https://huggingface.co/OmarSamir/EGTTS-V0.1/resolve/main/vocab.json'
|