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