r3gm commited on
Commit
82c5971
·
verified ·
1 Parent(s): c351b2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -66,6 +66,7 @@ for url, filename in zip(test_model.split(", "), test_names):
66
 
67
  title = "<center><strong><font size='7'>RVC⚡ZERO</font></strong></center>"
68
  description = "This demo is provided for educational and research purposes only. The authors and contributors of this project do not endorse or encourage any misuse or unethical use of this software. Any use of this software for purposes other than those intended is solely at the user's own risk. The authors and contributors shall not be held responsible for any damages or liabilities arising from the use of this demo inappropriately." if IS_ZERO_GPU else ""
 
69
  theme = args.theme
70
  delete_cache_time = (3200, 3200) if IS_ZERO_GPU else (86400, 86400)
71
 
@@ -828,6 +829,7 @@ def get_gui(theme):
828
  outputs=[output_base],
829
  cache_examples=False,
830
  )
 
831
 
832
  return app
833
 
 
66
 
67
  title = "<center><strong><font size='7'>RVC⚡ZERO</font></strong></center>"
68
  description = "This demo is provided for educational and research purposes only. The authors and contributors of this project do not endorse or encourage any misuse or unethical use of this software. Any use of this software for purposes other than those intended is solely at the user's own risk. The authors and contributors shall not be held responsible for any damages or liabilities arising from the use of this demo inappropriately." if IS_ZERO_GPU else ""
69
+ RESOURCES = "- You can also try `RVC⚡ZERO` in Colab’s free tier, which provides free GPU [link](https://github.com/R3gm/rvc_zero_ui?tab=readme-ov-file#rvczero)."
70
  theme = args.theme
71
  delete_cache_time = (3200, 3200) if IS_ZERO_GPU else (86400, 86400)
72
 
 
829
  outputs=[output_base],
830
  cache_examples=False,
831
  )
832
+ gr.Markdown(RESOURCES)
833
 
834
  return app
835