huggingface-git / app.py
Samson
update more
eb20cb4
raw history blame
No virus
636 Bytes
# import gradio as gr
# def greet(name):
# return "Hello " + name + "!!... How are you doing today"
# iface = gr.Interface(fn=greet,
# inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
# outputs="text")
# iface.launch()
from transformers import pipeline
import gradio as gr
model = pipeline('summarization')
def predict(prompt):
summary = model(prompt)[0]["summary_text"]
return summary
iface = gr.Interface(fn = predict,
inputs =gr.Textbox(lines = 4, placeholder "Enter what to summarize"),
outputs = "text")
iface.launch()