Wootang01's picture
Update app.py
4113f86
raw
history blame
220 Bytes
import gradio as gr
from gradio.mix import Parallel
model1 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
model2 = gr.Interface.load("huggingface/bigscience/bloom-560m")
gr.Parallel(model1, model2).launch()