Spaces:
Sleeping
Sleeping
File size: 322 Bytes
5677497 7e8974e 9de1457 7e8974e 9de1457 21d3046 |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
from transformers import pipeline
pipe = pipeline('summarization')
def summary(input):
value = pipe(input)
return value[0]['summary_text']
a = gr.Interface(fn=summary, inputs= gr.Textbox(lines=5 label='Enter Text'), outputs = gr.Textbox(label='Summary'), title = 'Text Summarizer')
a.launch() |