# !wget -nc https://raw.githubusercontent.com/baobuiquang/datasets/main/sample.xlsx >& /dev/null # !pip install gradio==4.21.0 >& /dev/null # ============================== # ========== HARDCODE ========== X_LIST_NAME = "Tên chỉ số" # ============================== # ========== PACKAGES ========== import gradio as gr # gradio==4.21.0 import pandas as pd import numpy as np import torch import time from transformers import AutoTokenizer, AutoModel from datetime import datetime, timedelta from dateparser.search import search_dates # pd.options.mode.chained_assignment = None # default='warn' # =========================== # ========== FILES ========== FILE_NAME = "data/sample.xlsx" df_map = pd.read_excel(FILE_NAME, header=None, sheet_name=None) df_map_sheet_names = pd.ExcelFile(FILE_NAME).sheet_names # ============================ # ========== MODELS ========== MODEL_NAME = "baobuiquang/XLM-ROBERTA-ME5-BASE" tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME) model = AutoModel.from_pretrained(MODEL_NAME) # =============================== # ========== FUNCTIONS ========== # Text -> Embedding def text_to_embedding(text): lower_text = text.lower() # Lowercasing encoded_input = tokenizer(lower_text, padding=True, truncation=True, return_tensors='pt') with torch.no_grad(): model_output = model(**encoded_input) embedding = mean_pooling(model_output, encoded_input['attention_mask']) return embedding[0] # List of Texts -> List of Embeddings def texts_to_embeddings(list_of_texts): list_of_lower_texts = [t.lower() for t in list_of_texts] # Lowercasing encoded_input = tokenizer(list_of_lower_texts, padding=True, truncation=True, return_tensors='pt') with torch.no_grad(): model_output = model(**encoded_input) list_of_embeddings = mean_pooling(model_output, encoded_input['attention_mask']) return list_of_embeddings # Mean Pooling # - Take attention mask into account for correct averaging def mean_pooling(model_output, attention_mask): token_embeddings = model_output[0] # First element of model_output contains all token embeddings input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float() return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9) # Cosine Similarity between 2 embeddings def cosine_similarity(a, b): return np.dot(a, b)/(np.linalg.norm(a)*np.linalg.norm(b)) # Find index of the max similarity when comparing an embedding to a list def similarity(my_embedding, list_of_embeddings): list_of_sim = [0] * len(list_of_embeddings) max_sim = -1.0 max_sim_index = 0 for i in range(len(list_of_embeddings)): cos_sim = cosine_similarity(my_embedding, list_of_embeddings[i]) list_of_sim[i] = cos_sim if cos_sim > max_sim: max_sim = cos_sim max_sim_index = i return {"max_index": max_sim_index, "max": max_sim, "list": list_of_sim} # =================================== # ========== PREPROCESSING ========== # preprocessed_df_map ---------------------------------------------------------- # - A list of dataframes (preprocessed), each dataframe contains data from 1 sheet from the XLSX file preprocessed_df_map = [] for sheet_name in df_map_sheet_names: # Get sheet data df = pd.DataFrame(df_map[sheet_name]) # Setup header header_position = df[df[0] == "#"].index[0] new_header = [] for e in df.loc[header_position]: if isinstance(e, datetime): new_header.append( f"ngày {e.strftime('%d').lstrip('0')} tháng {e.strftime('%m').lstrip('0')} năm {e.strftime('%Y')} {e.strftime('%d').lstrip('0')}/{e.strftime('%m').lstrip('0')}/{e.strftime('%Y')} {e.strftime('%d')}/{e.strftime('%m')}/{e.strftime('%Y')}" ) else: new_header.append(e) df = df.rename(columns = dict(zip(df.columns, new_header))) df = df.iloc[header_position+1:] # # Preprocess column "#" values # df['#'] = df['#'].replace(to_replace = r'^\d+(\.\d+)?$', value = np.nan, regex=True) # df['#'] = df['#'].fillna(method = 'ffill') # df = df.dropna(thresh = df.shape[1] * 0.25, axis = 0) # Keep rows that have at least 25% values are not NaN # df = df.dropna(thresh = df.shape[1] * 0.25, axis = 1) # Keep cols that have at least 25% values are not NaN # df = df.rename(columns={'#': 'Nhóm chỉ số'}) # # Move column "#" to the end # columns = list(df.columns) # columns.append(columns.pop(0)) # df = df.reindex(columns=columns) # General Preprocess df = df.reset_index(drop=True) df = df.fillna('No data') df = df.astype(str) # Return the preprocessed sheet preprocessed_df_map.append(df) # ======================================== # ========== FEATURE EXTRACTION ========== # embeddings_map --------------------------------------------------------------- # - A list of pre-calculated embeddings (vectors) of x/y axis in the corresponding dataframe in the `preprocessed_df_map` x_list_embeddings_map = [] y_list_embeddings_map = [] for i in range(len(preprocessed_df_map)): df = preprocessed_df_map[i] # HARDCODE x_list = list(df[X_LIST_NAME]) y_list = list(df.columns) # Only need to calculate once x_list_embeddings = texts_to_embeddings(x_list) y_list_embeddings = texts_to_embeddings(y_list) # Return the embeddings map x_list_embeddings_map.append(x_list_embeddings) y_list_embeddings_map.append(y_list_embeddings) # ========================== # ========== MAIN ========== def chatbot_mechanism(message, history, additional_input_1): # Clarify namings question = message sheet_id = additional_input_1 # Small preprocess the message to handle unclear cases (ex: "tháng này") extra_information_for_special_cases = "" extra_information_for_special_cases_flag = False unclear_cases = [ # Case 0: -> DAY, MONTH, YEAR [ "ngày này" , "ngày hiện tại", "ngày hôm nay", "hôm nay", "hôm này", "ngày nay", "ngày hiện nay", "bây giờ", "hiện giờ", "hiện nay", "hiện tại", "thời điểm này", "thời gian này", "lúc này", "khi này", ], # Case 1: -> MONTH, YEAR ["tháng này", "tháng hiện tại", "tháng nay", "tháng bây giờ", "tháng đang diễn ra", "tháng hiện nay", "tháng hiện giờ"], # Case 2: -> YEAR ["năm này", "năm hiện tại", "năm nay", "năm hiện nay"], # Case 3: -> DAY, MONTH, YEAR ["hôm qua", "hôm trước", "ngày qua", "ngày trước"], # Case 4: -> MONTH, YEAR ["tháng trước", "tháng qua", "tháng vừa rồi", "tháng đã qua"], # Case 5: -> YEAR ["năm trước", "năm ngoái", "năm qua", "năm vừa rồi", "năm đã qua"], # Case 6: -> DAY, MONTH, YEAR ["ngày mai", "ngày sau", "ngày tới", "ngày tiếp theo", "ngày hôm sau", "ngày kế tiếp", "ngày sắp tới"], # Case 7: -> MONTH, YEAR ["tháng sau", "tháng tới", "tháng tiếp theo", "tháng kế tiếp", "tháng sắp tới"], # Case 8: -> YEAR ["năm sau", "năm tới", "năm tiếp theo", "năm kế tiếp", "năm sắp tới"], ] for i in range(len(unclear_cases)): for u in range(len(unclear_cases[i])): if unclear_cases[i][u] in question: # Flag extra_information_for_special_cases_flag = True # Get the current time data current_time = datetime.now() target_time = datetime.now() # Just pre-define # Handle specific cases if i in [0, 1, 2]: target_time = current_time # No change elif i == 3: target_time = current_time - timedelta(days = 1) elif i == 4: target_time = current_time - timedelta(days = 30) elif i == 5: target_time = current_time - timedelta(days = 365) elif i == 6: target_time = current_time + timedelta(days = 1) elif i == 7: target_time = current_time + timedelta(days = 30) elif i == 8: target_time = current_time + timedelta(days = 365) # Extract time to day, month, year day = str(target_time.strftime('%d').lstrip('')) month = str(target_time.strftime('%m').lstrip('')) year = str(target_time.strftime('%Y').lstrip('')) # Handle specific cases if i in [0, 3, 6]: extra_information_for_special_cases = f"Ngày {day} tháng {month} năm {year}" elif i in [1, 4, 7]: extra_information_for_special_cases = f"Tháng {month} năm {year}" elif i in [2, 5, 8]: extra_information_for_special_cases = f"Năm {year}" if extra_information_for_special_cases_flag == True: question = extra_information_for_special_cases + " " + question # Select the right data df = preprocessed_df_map[sheet_id] x_list_embeddings = x_list_embeddings_map[sheet_id] y_list_embeddings = y_list_embeddings_map[sheet_id] # Find the position of the needed cell question_embedding = text_to_embedding(question) x_sim = similarity(question_embedding, x_list_embeddings) y_sim = similarity(question_embedding, y_list_embeddings) x_index = x_sim['max_index'] y_index = y_sim['max_index'] x_score = x_sim['max'] y_score = y_sim['max'] x_text = str(df.loc[x_index, 'Tên chỉ số']) y_text = str(df.columns[y_index]) # Not related but extract datetime in the question if any extracted_date = search_dates(question)[0][1].strftime('%d/%m/%Y') # Small adjustment for better print if y_text.count('/') == 4: y_text = y_text[-10:] # If y_text is preprocessed datetime format, trim it # Just add some text to warn users eval_text_1 = "" eval_text_2 = "" eval_text_sub_title = "" if x_score <= 0.865 or y_score <= 0.865: eval_text_sub_title = "Cảnh báo:" eval_text_1 = "⚠️ Độ tương quan thấp ⚠️" eval_text_2 = "opacity: 0.5;" # Score display x_score_display = str(round((x_score - 0.8) / (1.0 - 0.8) * 100, 1)) y_score_display = str(round((y_score - 0.8) / (1.0 - 0.8) * 100, 1)) # Cell value cell_value = df.iloc[x_index, y_index] # Final print final_output_message = f"\