Spaces:
Runtime error
Runtime error
Commit
·
2d6c2c5
1
Parent(s):
3531a7c
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,6 +20,12 @@ vision_demo = gr.Interface.load(
|
|
| 20 |
description="Vision Transformer",
|
| 21 |
)
|
| 22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
stt_demo = gr.Interface.load(
|
| 24 |
"huggingface/facebook/wav2vec2-base-960h",
|
| 25 |
title=None,
|
|
@@ -29,7 +35,7 @@ stt_demo = gr.Interface.load(
|
|
| 29 |
|
| 30 |
with gr.Blocks() as demo:
|
| 31 |
gr.Markdown("<h2>Welcome to Mushrooom Solutions - AI ML Showcase</h2>")
|
| 32 |
-
gr.TabbedInterface([vision_demo, tts_demo, stt_demo], ["Image Classification", "Text-to-speech", "Speech-to-text"])
|
| 33 |
|
| 34 |
if __name__ == "__main__":
|
| 35 |
demo.launch()
|
|
|
|
| 20 |
description="Vision Transformer",
|
| 21 |
)
|
| 22 |
|
| 23 |
+
chatgpt3_demo = gr.Interface.load(
|
| 24 |
+
"spaces/mushroomsolutions/chatgpt-3",
|
| 25 |
+
title=None,
|
| 26 |
+
description="Chat GPT3",
|
| 27 |
+
)
|
| 28 |
+
|
| 29 |
stt_demo = gr.Interface.load(
|
| 30 |
"huggingface/facebook/wav2vec2-base-960h",
|
| 31 |
title=None,
|
|
|
|
| 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()
|