market-multiagent / utils /data_loader.py
tetsydorenko's picture
Upload 11 files
20eba2e verified
# -*- coding: utf-8 -*-# ============ IMPORTS ============
# edit 21.05.2025 by tet.sydorenko - creating csv-files for analysis
import os
import re
import pickle
import logging
import warnings
import pandas as pd
import numpy as np
import pdfplumber
import torch
from tqdm import tqdm
from dotenv import load_dotenv
from sentence_transformers import SentenceTransformer
from langchain_core.documents import Document
from langchain_community.embeddings import SentenceTransformerEmbeddings
from langchain_chroma import Chroma
from langchain_huggingface import HuggingFaceEmbeddings
import chromadb # for creating chromadb
from chromadb.config import Settings
# ============ CONFIGURATION ============
warnings.filterwarnings("ignore", message="CropBox missing")
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(message)s')
logger = logging.getLogger(__name__)
# ============ MODEL INITIALIZATION ============
model = SentenceTransformer("sentence-transformers/all-mpnet-base-v2")
logger.info("โšก GPU active: %s", torch.cuda.is_available())
logger.info("๐Ÿ–ฅ๏ธ Model device: %s", model.device)
# ============ ENVIRONMENT VARIABLES ============
load_dotenv()
os.environ["LANGSMITH_TRACING"] = "true"
import os
os.environ["LANGCHAIN_TRACING_V2"] = "true"
os.environ["LANGCHAIN_PROJECT"] = "Multi_Agenten"
os.environ["LANGCHAIN_ENDPOINT"] = "https://api.smith.langchain.com"
os.environ["LANGSMITH_API_KEY"] = os.getenv("LANGSMITH_API_KEY")
os.environ["GOOGLE_API_KEY"] = os.getenv("GOOGLE_API_KEY")
# ============ HELPER FUNCTIONS ============
def normalize_text(text):
"""Normalize text by removing special characters"""
return re.sub(r'[^a-z0-9]', '', text.lower())
def is_pdf_file(filename):
"""Check if file is PDF"""
return filename.lower().endswith('.pdf')
def extract_metadata(filename):
"""
Extract company name, year, report type and quarter from filename
Examples:
"Apple_Q1_2023_Report.pdf" โžœ ('apple', '2023', 'quarterly', 'Q1')
"""
normalized = normalize_text(filename)
return (
next((c for c in ['apple','google','meta','microsoft','nvidia'] if c in normalized), None),
next((y for y in map(str, range(2019,2025)) if y in filename), None),
'quarterly' if any(q in normalized for q in ['q1','q2','q3','q4','10q']) else 'annual',
next((f'Q{i}' for i in range(1,5) if f'q{i}' in normalized), None)
)
# ============ LOAD FROM PICKLE ============
def load_from_pickle(file_path):
if os.path.exists(file_path):
logger.info(f"๐Ÿ“ฆ Loading data from {file_path}")
with open(file_path, 'rb') as f:
return pickle.load(f)
return None
# ============ PROCESS PDFs ============ edit by tet.sydorenko: tables were extracted incorrectly
def create_data_from_pdfs(data_dir="./data", file_path="extracted_documents.pkl"):
logger.info("โณ Creating new data from PDFs...")
extracted_data = []
for root, _, files in os.walk(data_dir):
for filename in tqdm(files, desc="Processing files"):
if is_pdf_file(filename):
meta = extract_metadata(filename)
if meta and meta[0]: # Ensure company name exists
try:
with pdfplumber.open(os.path.join(root, filename)) as pdf:
tables = []
for page in pdf.pages:
raw_tables = page.extract_tables()
for table in raw_tables:
if len(table) > 1 and all(len(row) == len(table[0]) for row in table): # tet.syd: Checking Column Equality
try:
df = pd.DataFrame(table[1:], columns=table[0])
df.dropna(how="all", inplace=True)
df = df.loc[:, ~df.columns.duplicated()] # tet.syd: Remove duplicate titles
if df.shape[1] >= 2: # tet.syd: Let's make sure there are at least 2 columns
tables.append(df)
except Exception as e:
logger.warning(f"โš ๏ธ Error converting table: {e}")
if tables:
extracted_data.append({
'company': meta[0],
'file': filename,
'year': meta[1],
'report_type': meta[2],
'quarter': meta[3],
'tables': tables
})
except Exception as e:
logger.error(f"โŒ Error processing {filename}: {e}")
# Save data to pickle file
with open(file_path, 'wb') as f:
pickle.dump(extracted_data, f)
logger.info(f"โœ… Saved {len(extracted_data)} documents to {file_path}")
return extracted_data
# ============ MAIN FUNCTION ============
def load_data(file_path="extracted_documents.pkl", data_dir="./data"):
"""
Load data from pickle file if available, otherwise process PDFs and create the file
"""
extracted_data = load_from_pickle(file_path)
if extracted_data is None:
extracted_data = create_data_from_pdfs(data_dir, file_path)
return extracted_data
# ============ TABLE FILTERING ============
def is_relevant_table(dataframe):
"""
Check if table contains relevant financial data
"""
if dataframe is None or dataframe.empty:
return False
keywords = ["cash", "assets", "liabilities", "revenue", "income", "total", "net", "equity"]
banlist = ["item", "management", "controls", "procedures", "legal", "discussion", "risk"]
try:
flat_text = " ".join(str(value).lower() for value in dataframe.values.flatten() if pd.notnull(value))
if any(banned in flat_text for banned in banlist):
return False
keyword_matches = sum(1 for keyword in keywords if keyword in flat_text)
return keyword_matches >= 2 or any(currency in flat_text for currency in ["$", "โ‚ฌ", "%"])
except Exception:
return False
# ============ DOCUMENT CREATION ============
def create_documents(extracted_data, overwrite_csv: bool = False): # edit by tetsydorenko: export to csv
"""
Create LangChain documents from relevant financial tables and export them to CSV files.
Args:
extracted_data (list): List of dictionaries containing company metadata and raw tables
overwrite_csv (bool): If True, existing CSV files will be overwritten
"""
documents = []
os.makedirs("processed_tables", exist_ok=True) # Ensure target directory exists
for entry in extracted_data:
# Build document-level metadata text
content = f"๐Ÿ“Š {entry['company']} {entry['year']} {entry['report_type']}"
content += f" {entry['quarter']}" if entry['quarter'] else ""
content += f" from {entry['file']}:\n"
tables_content = []
kept_tables = 0
for i, df in enumerate(entry['tables']):
# Remove empty rows and columns
df = df.dropna(how='all').dropna(axis=1, how='all')
if df.empty or df.shape[1] < 2:
continue
try:
# Attempt to convert potential financial strings to numeric values
numeric_candidate = df.apply(lambda col: col.map(
lambda x: float(str(x).replace(",", "").replace("$", "").replace("โ‚ฌ", "").strip())
if isinstance(x, str) and re.search(r"\d", x)
else np.nan
))
numeric_cols = numeric_candidate.dropna(axis=1, thresh=3)
valid_rows = numeric_candidate.dropna(how='all')
# Keep only tables with at least 2 numeric columns and 3 valid rows
if numeric_cols.shape[1] < 2 or valid_rows.shape[0] < 3:
logger.info(f"โ„น๏ธ Table {i} from {entry['file']} skipped: not enough numeric content.")
continue
# === Save CSV ===
filename_parts = [
entry['company'],
entry['year'] or "unknown",
entry['quarter'] or "annual",
f"table{i}"
]
csv_filename = f"./processed_tables/{'_'.join(filename_parts)}.csv"
if overwrite_csv or not os.path.exists(csv_filename):
df.to_csv(csv_filename, index=False)
logger.info(f"๐Ÿ’พ Saved: {csv_filename}")
else:
logger.info(f"๐Ÿ›‘ Skipped existing file: {csv_filename}")
# Add to document content
tables_content.append(f"\n--- Table {i} ---\n{df.to_markdown(index=False)}")
kept_tables += 1
except ValueError as e:
if "could not convert string to float" in str(e):
logger.info(f"โ„น๏ธ Table {i} from {entry['file']} skipped: non-numeric or malformed content.")
else:
logger.warning(f"โš ๏ธ Unexpected error in table {i} from {entry['file']}: {e}")
except Exception as e:
logger.warning(f"โš ๏ธ General error in table {i} from {entry['file']}: {e}")
# Finalize and save the LangChain document if valid tables were found
if kept_tables > 0:
content += "\n".join(tables_content)
documents.append(Document(
page_content=content,
metadata={
"company": entry['company'],
"file": entry['file'],
"year": entry['year'],
"report_type": entry['report_type'],
"quarter": entry['quarter']
}
))
logger.info("โœ… Created %d relevant documents", len(documents))
return documents
# ============ VECTOR STORE ============
def initialize_vector_store():
"""
Initialize Chroma vector database using PersistentClient
"""
embeddings = HuggingFaceEmbeddings(model_name="sentence-transformers/all-mpnet-base-v2")
persist_directory = "./chroma_db" # pass for saving chromadb
print('\nPERSISTANT DIRECTORY: ',persist_directory)
chroma_client = chromadb.PersistentClient(path=persist_directory) # create PersistentClient!
return Chroma(
client=chroma_client,
collection_name="financial_reports",
embedding_function=embeddings,
persist_directory=persist_directory
)
# ============ MAIN PROCESS ============
def main():
try:
# 1. Load data
data = load_data()
# 2. Create documents
documents = create_documents(data,overwrite_csv=False) # REMOVE overwrite_csv=True (should be False!)
# 3. Initialize vector store
vector_store = initialize_vector_store()
# 4. Store documents in batches (edit by tet.sydorenko: Store documents only if collection is empty)
collection_size = vector_store._collection.count()
logger.info("๐Ÿ“ฆ Existing documents in vector DB: %d", collection_size)
if collection_size == 0:
batch_size = 5000
total_docs = len(documents)
logger.info("โณ Storing %d documents in batches of %d", total_docs, batch_size)
for batch_start in range(0, total_docs, batch_size):
batch = documents[batch_start:batch_start + batch_size]
vector_store.add_documents(batch)
batch_num = (batch_start // batch_size) + 1
logger.info("โœ… Batch %d with %d documents added", batch_num, len(batch))
else:
logger.info("โœ… Vector store already contains documents. Skipping insertion.")
# 5. Example search
query = "What was Meta's net income in 2023?"
logger.info("๐Ÿ” Searching for: %s", query)
results = vector_store.similarity_search(query, k=3)
for i, doc in enumerate(results, 1):
logger.info("\n๐Ÿ”Ž Result %d:\n%.300s...\n๐Ÿ“Ž Metadata: %s",
i, doc.page_content, doc.metadata)
# Save ChromaDB
logger.info("๐Ÿ’พ ChromaDB persisted at ./chroma_db")
except Exception as e:
logger.error(f"An error occurred: {e}")
raise
if __name__ == "__main__":
main()