Aitron Emper commited on
Commit
c99d8c1
1 Parent(s): ff52e04

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -9
app.py CHANGED
@@ -66,15 +66,15 @@ with gr.Blocks(theme=my_applio, title="Applio") as Applio:
66
  with gr.Tab(i18n("Inference")):
67
  inference_tab()
68
 
69
- with gr.Tab(i18n("Train")):
70
- if gpu_available() or load_fake_gpu():
71
- train_tab()
72
- else:
73
- gr.Markdown(
74
- i18n(
75
- "Currently, training is unsupported due to the absence of a GPU. If you have a PC with a GPU and wish to train a model, please refer to our installation guide here: [Applio Installation Guide](https://docs.applio.org/get-started/installation/). For those without a GPU-enabled PC, explore alternative options here: [Applio Alternatives](https://docs.applio.org/get-started/alternatives/)."
76
- )
77
- )
78
 
79
  with gr.Tab(i18n("TTS")):
80
  tts_tab()
 
66
  with gr.Tab(i18n("Inference")):
67
  inference_tab()
68
 
69
+ # with gr.Tab(i18n("Train")):
70
+ # if gpu_available() or load_fake_gpu():
71
+ # train_tab()
72
+ # else:
73
+ # gr.Markdown(
74
+ # i18n(
75
+ # "Currently, training is unsupported due to the absence of a GPU. If you have a PC with a GPU and wish to train a model, please refer to our installation guide here: [Applio Installation Guide](https://docs.applio.org/get-started/installation/). For those without a GPU-enabled PC, explore alternative options here: [Applio Alternatives](https://docs.applio.org/get-started/alternatives/)."
76
+ # )
77
+ # )
78
 
79
  with gr.Tab(i18n("TTS")):
80
  tts_tab()