File size: 600 Bytes
e1e6c40
aba8fa4
e1e6c40
 
 
 
 
88955e5
e1e6c40
 
 
 
 
5c44caa
e1e6c40
aba8fa4
e1e6c40
 
 
 
 
 
aba8fa4
e1e6c40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

import gradio as gr
from transformers import pipeline

generator = pipeline('text-generation', model='gpt2')

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

examples = [
    ["The Moon's orbit around Earth has"],
    ["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
    ["Its a beautiful day out there"]
]

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()