import re import pandas as pd import plotly.figure_factory as ff import plotly.graph_objects as go import pyperclip import streamlit as st from unidecode import unidecode st.set_page_config(layout="wide") DATA_SPLITS = ["train", "dev", "test"] def load_data() -> dict[str, pd.DataFrame]: return {data: pd.read_csv(f"data/{data}.csv") for data in DATA_SPLITS} def flatten_list(main_list: list[list]) -> list: return [item for sublist in main_list for item in sublist] def count_num_of_characters(text: str) -> int: return len(re.sub(r"[^a-zA-Z]", "", unidecode(text))) def count_num_of_words(text: str) -> int: return len(re.sub(r"[^a-zA-Z ]", "", unidecode(text)).split(" ")) DATA_DICT = load_data() header = st.container() description = st.container() dataset_statistics = st.container() class_distribution = st.container() with header: st.title("PAC - Polish Abusive Clauses Dataset") with description: st.header("Dataset description") desc = """ ''I have read and agree to the terms and conditions'' is one of the biggest lies on the Internet. Consumers rarely read the contracts they are required to accept. We conclude agreements over the Internet daily. But do we know the content of these agreements? Do we check potential unfair statements? On the Internet, we probably skip most of the Terms and Conditions. However, we must remember that we have concluded many more contracts. Imagine that we want to buy a house, a car, send our kids to the nursery, open a bank account, or many more. In all these situations, you will need to conclude the contract, but there is a high probability that you will not read the entire agreement with proper understanding. European consumer law aims to prevent businesses from using so-called ''unfair contractual terms'' in their unilaterally drafted contracts, requiring consumers to accept. Our dataset treats ''unfair contractual term'' as the equivalent of an abusive clause. It could be defined as a clause that is unilaterally imposed by one of the contract's parties, unequally affecting the other, or creating a situation of imbalance between the duties and rights of the parties. On the EU and at the national such as the Polish levels, agencies cannot check possible agreements by hand. Hence, we took the first step to evaluate the possibility of accelerating this process. We created a dataset and machine learning models to automate potentially abusive clauses detection partially. Consumer protection organizations and agencies can use these resources to make their work more effective and efficient. Moreover, consumers can automatically analyze contracts and understand what they agree upon. """ st.write(desc) st.markdown("