Spaces:
Runtime error
Runtime error
File size: 351 Bytes
e22fd6d e704493 e22fd6d f0d64fc 8afa02e e704493 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import gradio as gr
from gradio.mix import Parallel
a="My First Text Generator"
b="Input text and submit."
model1=gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model2=gr.Interface.load("huggingface/gpt2")
model3=gr.Interface.load("huggingface/bigscience/bloom-560m")
gr.Interface.load(model1, model2, model3,title=a, description=b).launch()
|