Paco1112's picture
Update app.py
a6fb0c6
raw
history blame contribute delete
No virus
349 Bytes
import gradio as gr
from gradio.mix import Parallel
#variables, functions and parameters
model1 = gr.Interface.load("huggingface/gpt2")
model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
#functions, parameters and variables
gr.Parallel(model1, model2, model3).launch()