Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
839fe82
1
Parent(s):
56c6169
Update app.py
Browse files
app.py
CHANGED
@@ -10,8 +10,8 @@ examples = [
|
|
10 |
['Paris is the capital of']
|
11 |
]
|
12 |
|
13 |
-
io1 = gr.Interface.load("huggingface/gpt2"
|
14 |
|
15 |
-
io2 = gr.Interface.load("huggingface/gpt2-large"
|
16 |
|
17 |
-
mix.Parallel(io1, io2).launch(enable_queue=True)
|
|
|
10 |
['Paris is the capital of']
|
11 |
]
|
12 |
|
13 |
+
io1 = gr.Interface.load("huggingface/gpt2")
|
14 |
|
15 |
+
io2 = gr.Interface.load("huggingface/gpt2-large")
|
16 |
|
17 |
+
mix.Parallel(io1, io2,inputs=gr.inputs.Textbox(lines=5, label="Input Text"),description=description,article=article, examples=examples).launch(enable_queue=True)
|