srinivas-mushroom commited on
Commit
ce0d941
·
1 Parent(s): 8a94dc4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -20,6 +20,12 @@ anime_demo = gr.Interface.load(
20
  description="Anime GAN",
21
  )
22
 
 
 
 
 
 
 
23
 
24
  vision_demo = gr.Interface.load(
25
  "models/google/vit-base-patch16-224",
@@ -50,7 +56,8 @@ stt_demo = gr.Interface.load(
50
 
51
  with gr.Blocks() as demo:
52
  gr.Markdown("<h2>Welcome to Mushrooom Solutions - AI ML Showcase</h2>")
53
- gr.TabbedInterface([vision_demo, sentiment_demo, anime_demo, chatgpt3_demo, tts_demo, stt_demo], ["Image Classification", "Sentiment Analysis", "Anime", "Chat GPT3", "Text-to-speech", "Speech-to-text"])
 
54
 
55
  if __name__ == "__main__":
56
  demo.launch()
 
20
  description="Anime GAN",
21
  )
22
 
23
+ drug_demo = gr.Interface.load(
24
+ "spaces/jsylee/adverse-drug-reactions-ner",
25
+ title=None,
26
+ description="Drug and Adverse Reactions",
27
+ )
28
+
29
 
30
  vision_demo = gr.Interface.load(
31
  "models/google/vit-base-patch16-224",
 
56
 
57
  with gr.Blocks() as demo:
58
  gr.Markdown("<h2>Welcome to Mushrooom Solutions - AI ML Showcase</h2>")
59
+ gr.TabbedInterface([vision_demo, sentiment_demo, drug_demo, anime_demo, chatgpt3_demo, tts_demo, stt_demo],
60
+ ["Image Classification", "Sentiment Analysis", "Drug and Adverse Reactions", "Anime", "Chat GPT3", "Text-to-speech", "Speech-to-text"])
61
 
62
  if __name__ == "__main__":
63
  demo.launch()