Wootang01 commited on
Commit
a37c17d
·
1 Parent(s): 8c55bca

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from gradio.mix import Parallel, Series
3
+
4
+ model1 = gr.Interface.load("gpt2")
5
+ model2 = gr.Interface.load("EleutherAI/gpt-j-6B")
6
+ model3 = gr.Interface.load("EleutherAI/gpt-neo-1.3B")
7
+
8
+ Parallel(model1, model2, model3).launch()