Spaces:
Runtime error
Runtime error
File size: 904 Bytes
8469365 159dc34 8469365 5872d00 8469365 d8373c0 8469365 8384d4b 8469365 d9f9ec4 8469365 ed3287f 8469365 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# URL: https://huggingface.co/spaces/gradio/text_generation
# DESCRIPTION: This text generation demo takes in input text and returns generated text. It uses the Transformers library to set up the model and has two examples.
# imports
import gradio as gr
from transformers import pipeline
# loading the model
generator = pipeline('text-generation', model='gpt2')
# defining the core function
def generate(text):
result = generator(text, max_length=30, num_return_sequences=1)
return result[0]["generated_text"]
# defining examples
examples = [
["The Moon's orbit around Earth has"],
["The smooth Borealis basin in the Northern Hemisphere covers 40%"],
]
# defining the interface
demo = gr.Interface(
fn=generate,
inputs=gr.inputs.Textbox(lines=5, label="Input Text"),
outputs=gr.outputs.Textbox(label="Generated Text"),
examples=examples
)
# launching
demo.launch()
|