Spaces:
Sleeping
Sleeping
File size: 338 Bytes
6bb87ca 4cd2661 6bb87ca 4cd2661 6bb87ca |
1 2 3 4 5 6 7 8 9 10 11 |
#libraries
import gradio as gr
from gradio.mix import Parallel
#variable, functions and parameters
model1=gr.Interface.load("huggingface/gpt2")
model2=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model3=gr.Interface.load("huggingface/distilgpt2")
#functions, parameters and variables
gr.Parallel(model1, model2, model3).launch() |