Spaces:
Sleeping
Sleeping
File size: 1,156 Bytes
20fc0d3 5a3f111 20fc0d3 01168d5 20fc0d3 5a3f111 20fc0d3 8a2d0b5 20fc0d3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import gradio as gr
from transformers import pipeline
pipe_summarization = pipeline("summarization", model="facebook/bart-large-cnn")
def summarization_fun(txt):
txt_summ = pipe_summarization(txt, min_length=10, max_length=100)
txt_summ2 = txt_summ[0]["summary_text"]
return txt_summ2
ex = ["The Saudi Founding Day is a national occasion in the Kingdom of Saudi Arabia, commemorating the founding of the First Saudi State in 1727 by Imam Mohammed Bin Saud. It was approved by a Royal Decree issued by the Custodian of the Two Holy Mosques, King Salman Bin Abdulaziz Al Saud, on January 27, 2022. February 22 of each year is designated as the anniversary of the founding of the Kingdom and an official holiday."]
custom_css = """
body {
background-image: url("/Assignment1part1/BG.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
"""
interface = gr.Interface(
fn=summarization_fun,
inputs=gr.Textbox(label="Enter your Text That you want to summarize it", lines=10),
outputs=gr.Textbox(label="The summurized text"),
examples=ex,
css=custom_css)
interface.launch() |