File size: 623 Bytes
5767a2a
3d41432
5767a2a
16ba532
3d41432
 
 
 
 
 
 
 
 
 
 
 
 
07711c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import gradio as gr
from transformers import pipeline

generator = pipeline('text-generation', model='EleutherAI/gpt-neo-2.7B')

def generate(text):
    result = generator(text, max_length=100, num_return_sequences=1)
    return result[0]["generated_text"]

examples = [
    ["Zoe Kwan is a 20-year old singer and songwriter who has taken Hong Kong’s music scene by storm."],
    ["Zoe only recently began writing songs."],
]

demo = gr.Interface(fn=generate, inputs=gr.inputs.Textbox(lines=5, label="Input Text"), outputs=gr.outputs.Textbox(label="Generated Text"), 
                    examples=examples)

demo.launch()