Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ title="My First Text Generator"
|
|
5 |
description="Input text and submit,"
|
6 |
|
7 |
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
gr.Parallel(model2,
|
|
|
5 |
description="Input text and submit,"
|
6 |
|
7 |
|
8 |
+
model1=gr.Interface.load('huggingface/EleutherAI/gpt-neo-1.3B')
|
9 |
+
model2=gr.Interface.load('huggingface/bigscience/bloom-560m')
|
10 |
|
11 |
+
gr.Parallel(model1,model2, title=title, description=description).launch()
|