srinivas-mushroom commited on
Commit
85378c5
·
1 Parent(s): ce0d941

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -8
app.py CHANGED
@@ -20,12 +20,6 @@ anime_demo = gr.Interface.load(
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,8 +50,8 @@ stt_demo = gr.Interface.load(
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()
 
20
  description="Anime GAN",
21
  )
22
 
 
 
 
 
 
 
23
 
24
  vision_demo = gr.Interface.load(
25
  "models/google/vit-base-patch16-224",
 
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],
54
+ ["Image Classification", "Sentiment Analysis", "Anime", "Chat GPT3", "Text-to-speech", "Speech-to-text"])
55
 
56
  if __name__ == "__main__":
57
  demo.launch()