dipperpines commited on
Commit
a3ba7a4
·
1 Parent(s): 299bf3f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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/EleutherAI/gpt-j-6B", title =title, desciption= desciption).launch ()
 
 
 
 
 
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()