Spaces:
Runtime error
Runtime error
File size: 442 Bytes
97d787c 6d3c964 97d787c 6d3c964 61cd43a 6d3c964 61cd43a 6d3c964 61cd43a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
from gradio.mix import Parallel
title="My First Text Generator"
description="Input text."
#variables, functions and parameters
model1 = gr.Interface.load("huggingface/gpt2")
model2 = gr.Interface.load("huggingface/EleutherAI/gpt-j-6B")
model3 = gr.Interface.load("huggingface/EleutherAI/gpt-neo-1.3B")
#functions, parameters and variables
gr.Parallel(model1, model2, model3,title=title,description=description).launch() |