QuoteGeneration / app.py
sr5434's picture
Update app.py
3489a48
raw
history blame contribute delete
No virus
563 Bytes
import gradio as gr
from transformers import pipeline
generator = pipeline('text-generation', model='sr5434/gptQuotes', tokenizer='facebook/opt-350m')
def generate(text):
result = generator("Generate a wise quote:\n" + text, max_length=30, num_return_sequences=1)
return result[0]["generated_text"][23:]
examples = [
['"'],
['"The meaning of life'],
]
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()