abdulmatinomotoso's picture
Update app.py
fe4994f
raw history blame
No virus
2.31 kB
#importing the necessary libraries
import re
import nltk
from nltk.tokenize import sent_tokenize
nltk.download('punkt')
import gradio as gr
from gradio.mix import Parallel
# Defining a function to read in the text file
def read_in_text(url):
with open(url, 'r') as file:
article = file.read()
return article
#Doing some text preprocessing, more will still be needed later
def clean_text(url):
text = read_in_text(url)
text = text.encode("ascii", errors="ignore").decode(
"ascii"
) # remove non-ascii, Chinese characters
text = re.sub(r"\n", " ", text)
text = re.sub(r"\n\n", " ", text)
text = re.sub(r"\t", " ", text)
text = text.strip(" ")
text = re.sub(
" +", " ", text
).strip() # get rid of multiple spaces and replace with a single
return text
#importing the model and tokenizer for the headline generator
from transformers import (
AutoTokenizer,
AutoModelForSeq2SeqLM,
)
#initializing the tokenizer and the model
model_type_2 ="valurank/pegasus-multi_news-headline"
tokenizer_2 = AutoTokenizer.from_pretrained(model_type_2)
model_2 = AutoModelForSeq2SeqLM.from_pretrained(model_type_2)
#Defining a function to generate the headlines
def headline_generator_2(file):
input_text = clean_text(file.name)
input_text = sent_tokenize(input_text)
text = ''.join(input_text[:6])
with tokenizer_2.as_target_tokenizer():
batch = tokenizer_2(
text, truncation=True, return_tensors="pt"
)
translated = model_2.generate(**batch)
summary_2 = tokenizer_2.batch_decode(translated, skip_special_tokens=True, max_length=20)
return summary_2[0]
#creating an interface for the headline generator using gradio
demo = gr.Interface(headline_generator_2, inputs=[gr.inputs.File(label="Drop your .txt file here", optional=False)],
title = "HEADLINE GENERATOR",
outputs=[gr.outputs.Textbox(label="Headline")],
theme= "darkhuggingface")
#launching the app
if __name__ == "__main__":
demo.launch(debug=True)