Paco1112 commited on
Commit
a6fb0c6
·
1 Parent(s): 9f0a910

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -1 +1,11 @@
1
- gr.Interface.load("huggingface/bigscience/bloom-560m", title="Text Generator Five w/ Variables", description="Input your text, submit and the machine will output text.").launch()
 
 
 
 
 
 
 
 
 
 
 
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
+