Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
from gradio.mix import Series
|
| 3 |
|
| 4 |
-
title="
|
| 5 |
-
description="Input
|
| 6 |
|
| 7 |
model1 = gr.Interface.load("huggingface/gpt2")
|
| 8 |
model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
|
| 9 |
model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
|
| 10 |
|
| 11 |
-
gr.
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
from gradio.mix import Series
|
| 3 |
|
| 4 |
+
title="My Frist Generator"
|
| 5 |
+
description="Input text and summit,"
|
| 6 |
|
| 7 |
model1 = gr.Interface.load("huggingface/gpt2")
|
| 8 |
model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
|
| 9 |
model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
|
| 10 |
|
| 11 |
+
gr.Parallel(model1, model2, model3, title=title, description=description).launch()
|