Create Code
Browse files
Code
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
!pip install transformers
|
2 |
+
!pip install gradio
|
3 |
+
|
4 |
+
import gradio as gr
|
5 |
+
from transformers import pipeline
|
6 |
+
|
7 |
+
summarizer = pipeline("summarization", model="facebook/bart-large-cnn")
|
8 |
+
|
9 |
+
def summarize_text(text):
|
10 |
+
summary = summarizer(text, max_length=200, min_length=100, do_sample=False)
|
11 |
+
return summary[0]['summary_text']
|
12 |
+
|
13 |
+
demo = gr.Interface(
|
14 |
+
fn=summarize_text,
|
15 |
+
inputs=gr.Textbox(placeholder="Enter your text here", label="Input Text"),
|
16 |
+
outputs=gr.Textbox(label="Summary"),
|
17 |
+
title="Text Summarizer",
|
18 |
+
description="This chatbot takes a long text as input and returns a summary."
|
19 |
+
)
|
20 |
+
|
21 |
+
demo.launch()
|