Spaces:
Sleeping
Sleeping
File size: 708 Bytes
8ada825 c2c5eee 8ada825 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | from transformers import pipeline
import gradio as gr
get_completion = pipeline("summarization")
def summarize(input):
output = get_completion(input)
return output[0]['summary_text']
def summarize(input):
output = get_completion(input)
return output[0]['summary_text']
gr.close_all()
demo = gr.Interface(fn=summarize,
inputs=[gr.Textbox(label="Text to summarize", lines=6)],
outputs=[gr.Textbox(label="Result", lines=3)],
title="Text summarization with distilbart-cnn",
description="Summarize any text using the `shleifer/distilbart-cnn-12-6` model under the hood!"
)
demo.launch() |