Spaces:
Runtime error
Runtime error
File size: 370 Bytes
4dee0d3 c80ecd4 4dee0d3 c80ecd4 b61c544 c80ecd4 275d819 c80ecd4 |
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."
model11=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model12=gr.Interface.load("huggingface/gpt2")
model13=gr.Interface.load("huggingface/EleutherAI/gpt-neo-125M")
gr.Parallel(model11, model12, model13, title=title, description=description).launch() |