Aitron Emper
commited on
Commit
•
3edc057
1
Parent(s):
1a7d583
Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ with gr.Blocks(theme=my_applio, title="Applio") as Applio:
|
|
63 |
)
|
64 |
with gr.Tab(i18n("Inference")):
|
65 |
inference_tab()
|
66 |
-
|
67 |
with gr.Tab(i18n("Train")):
|
68 |
if gpu_available() or load_fake_gpu():
|
69 |
train_tab()
|
@@ -73,19 +73,19 @@ with gr.Blocks(theme=my_applio, title="Applio") as Applio:
|
|
73 |
"Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option."
|
74 |
)
|
75 |
)
|
76 |
-
|
77 |
with gr.Tab(i18n("TTS")):
|
78 |
tts_tab()
|
79 |
-
|
80 |
with gr.Tab(i18n("Voice Blender")):
|
81 |
voice_blender_tab()
|
82 |
|
83 |
with gr.Tab(i18n("Plugins")):
|
84 |
plugins_tab()
|
85 |
-
|
86 |
with gr.Tab(i18n("Download")):
|
87 |
download_tab()
|
88 |
-
|
89 |
with gr.Tab(i18n("Report a Bug")):
|
90 |
report_tab()
|
91 |
|
@@ -101,7 +101,7 @@ with gr.Blocks(theme=my_applio, title="Applio") as Applio:
|
|
101 |
version_tab()
|
102 |
lang_tab()
|
103 |
restart_tab()
|
104 |
-
|
105 |
|
106 |
if __name__ == "__main__":
|
107 |
port = 6969
|
|
|
63 |
)
|
64 |
with gr.Tab(i18n("Inference")):
|
65 |
inference_tab()
|
66 |
+
'''
|
67 |
with gr.Tab(i18n("Train")):
|
68 |
if gpu_available() or load_fake_gpu():
|
69 |
train_tab()
|
|
|
73 |
"Training is currently unsupported due to the absence of a GPU. To activate the training tab, navigate to the settings tab and enable the 'Fake GPU' option."
|
74 |
)
|
75 |
)
|
76 |
+
'''
|
77 |
with gr.Tab(i18n("TTS")):
|
78 |
tts_tab()
|
79 |
+
'''
|
80 |
with gr.Tab(i18n("Voice Blender")):
|
81 |
voice_blender_tab()
|
82 |
|
83 |
with gr.Tab(i18n("Plugins")):
|
84 |
plugins_tab()
|
85 |
+
'''
|
86 |
with gr.Tab(i18n("Download")):
|
87 |
download_tab()
|
88 |
+
'''
|
89 |
with gr.Tab(i18n("Report a Bug")):
|
90 |
report_tab()
|
91 |
|
|
|
101 |
version_tab()
|
102 |
lang_tab()
|
103 |
restart_tab()
|
104 |
+
'''
|
105 |
|
106 |
if __name__ == "__main__":
|
107 |
port = 6969
|