Spaces:
Runtime error
Runtime error
Commit
·
a3ba7a4
1
Parent(s):
299bf3f
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,10 @@
|
|
1 |
import gradio as gr
|
|
|
2 |
|
3 |
title="My First Generator"
|
4 |
desciption="Input text and summit."
|
5 |
-
gr.Interface.load("huggingface/
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
from gradio . mix import paralell
|
3 |
|
4 |
title="My First Generator"
|
5 |
desciption="Input text and summit."
|
6 |
+
model1=gr.Interface. load("huggingface/gtp2")
|
7 |
+
model2=gr.Interface. load("huggugface/EleutherAI/gpt-neo-1.3B")
|
8 |
+
model3=gr.Interface. load("huggugface/biosciencebloom-560m")
|
9 |
+
|
10 |
+
gr.Parallel(model1,model2,model3, title=title, description=descrioption).launch()
|