Spaces:
Runtime error
Runtime error
File size: 4,579 Bytes
fbe3ac9 d09a554 42540ef fbe3ac9 87fbf70 69f90b2 87fbf70 69f90b2 87fbf70 69f90b2 87fbf70 6d14e62 9c923b0 146d058 bf8859b 146d058 fbe3ac9 6d14e62 146d058 6d14e62 90fd7fd d834656 6e9dcd9 6d14e62 146d058 47837be fbbbbe9 5d8fa8c 47837be fbe3ac9 |
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
import os
from typing import AnyStr
import nltk
import streamlit as st
from transformers import pipeline
def main() -> None:
nltk.download("punkt")
# header
st.title(":bookmark_tabs: Terms Of Service Summarizer :bookmark_tabs:")
st.markdown("The app aims to extract the main information from Terms Of Conditions, which are often too long and "
"difficult to understand. ")
st.markdown("To test it just copy-paste a Terms Of Conditions in the textarea or select one of the examples that "
"we have prepared for you, then you will see the summary represented as the most important sentences.")
st.markdown("If you want more info in how we built our NLP algorithm check the documentation in the following "
"GitHub repo: :point_right: https://github.com/balditommaso/TermsOfServiceSummarization :point_left:")
st.markdown(":skull_and_crossbones: NOTE :skull_and_crossbones::")
st.markdown("the App is still under development and we do not give any guarantee on the quality of the summaries, "
"so we suggest a careful reading of the document.")
@st.cache(allow_output_mutation=True, suppress_st_warning=True, show_spinner=False)
def create_pipeline():
with st.spinner("Loading the model..."):
tos_pipeline = pipeline(task="summarization",
model="ML-unipi/bart-large-tos",
tokenizer="ML-unipi/bart-large-tos"
)
return tos_pipeline
def display_summary(summary_sentences: list) -> None:
st.subheader("Summary :male-detective:")
for sentence in summary_sentences:
st.markdown(f"<li>{sentence}</li>", unsafe_allow_html=True)
def get_list_files() -> list:
names = []
for file in os.listdir("./samples/"):
if file.endswith(".txt"):
names.append(file.replace(".txt", ""))
return names
def fetch_file_content(filename: str) -> AnyStr:
with open(f"./samples/{filename.lower()}.txt", "r") as file:
text = file.read()
return text
def join_sentences(sentences: list) -> str:
return " ".join([sentence for sentence in sentences])
def split_sentences_by_token_length(sentences: list, split_token_length: int) -> list:
accumulated_lists = []
result_list = []
cumulative_token_length = 0
for sentence in sentences:
token_list = [token for token in nltk.word_tokenize(sentence) if token not in ['.']]
token_length = len(token_list)
if token_length + cumulative_token_length > split_token_length and result_list:
accumulated_lists.append(join_sentences(result_list))
result_list = [sentence]
cumulative_token_length = token_length
else:
result_list.append(sentence)
cumulative_token_length += token_length
if result_list:
accumulated_lists.append(join_sentences(result_list))
return accumulated_lists
pipe = create_pipeline()
if "target_text" not in st.session_state:
st.session_state.target_text = ""
if "sample_choice" not in st.session_state:
st.session_state.sample_choice = ""
st.header("Input")
sample_choice = st.selectbox(
label="Select a sample:",
options=get_list_files()
)
st.session_state.target_text = fetch_file_content(sample_choice)
target_text_input = st.text_area(
value=st.session_state.target_text,
label="Paste your own Term Of Service:",
height=240
)
summarize_button = st.button(label="Try it!")
if summarize_button:
if target_text_input is not "":
summary_sentences = []
with st.spinner("Summarizing in progress..."):
sentences = split_sentences_by_token_length(nltk.sent_tokenize(target_text_input, language="english"),
split_token_length=800
)
for sentence in sentences:
output = pipe(sentence)
summary = output[0]["summary_text"]
for line in summary.split("."):
if line != "":
summary_sentences.append(line)
display_summary(summary_sentences)
if __name__ == "__main__":
main()
|