Wootang01's picture
Update app.py
6cd7950
raw
history blame
245 Bytes
import gradio as gr
from gradio.mix import Parallel, Series
model1 = gr.Interface.load("gpt2")
model2 = gr.Interface.load("EleutherAI/gpt-j-6B")
model3 = gr.Interface.load("EleutherAI/gpt-neo-1.3B")
gr.Parallel(model1, model2, model3).launch()