Spaces:
Runtime error
Runtime error
File size: 360 Bytes
2efb67c 8f23562 2efb67c 1ecc858 45a52e0 1ecc858 45a52e0 8f23562 45a52e0 8f23562 8f2b4f7 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
from gradio.mix import Parallel
title="My First Text Generator"
description="Input text."
model1=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model2=gr.Interface.load("huggingface/gpt2")
model3=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
gr.Parallel(model1,model2,model3,title=title,description=description).launch() |