srinivas-mushroom commited on
Commit
5a8cf0f
1 Parent(s): 2d6c2c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -14,6 +14,13 @@ tts_demo = gr.Interface.load(
14
  description="Give me something to say!",
15
  )
16
 
 
 
 
 
 
 
 
17
  vision_demo = gr.Interface.load(
18
  "models/google/vit-base-patch16-224",
19
  title=None,
@@ -35,7 +42,7 @@ stt_demo = gr.Interface.load(
35
 
36
  with gr.Blocks() as demo:
37
  gr.Markdown("<h2>Welcome to Mushrooom Solutions - AI ML Showcase</h2>")
38
- gr.TabbedInterface([vision_demo, chatgpt3_demo, tts_demo, stt_demo], ["Image Classification", "Chat GPT3", "Text-to-speech", "Speech-to-text"])
39
 
40
  if __name__ == "__main__":
41
  demo.launch()
 
14
  description="Give me something to say!",
15
  )
16
 
17
+ anime_demo = gr.Interface.load(
18
+ "spaces/akhaliq/AnimeGANv2",
19
+ title=None,
20
+ description="Anime GAN",
21
+ )
22
+
23
+
24
  vision_demo = gr.Interface.load(
25
  "models/google/vit-base-patch16-224",
26
  title=None,
 
42
 
43
  with gr.Blocks() as demo:
44
  gr.Markdown("<h2>Welcome to Mushrooom Solutions - AI ML Showcase</h2>")
45
+ gr.TabbedInterface([vision_demo, anime_demo, chatgpt3_demo, tts_demo, stt_demo], ["Image Classification", "Anime", "Chat GPT3", "Text-to-speech", "Speech-to-text"])
46
 
47
  if __name__ == "__main__":
48
  demo.launch()