File size: 506 Bytes
af06d24
2d0581d
af06d24
2d0581d
 
7c21e4b
 
 
 
2d0581d
 
 
 
 
7c21e4b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr 
from gradio.mix import Parallel

title="My First Text Generator"
description="Input text."
examples = [
    ["Once upon a time, "],
    ["Dr Woo was teaching a coding workshop at Hong Kong True Light College."]
]

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, examples=examples).launch()