logan-codes's picture
Add Dockerfile, Gradio app, and core src modules
4ba360f
raw
history blame contribute delete
404 Bytes
import pandas as pd
import os
def load_data(file_path: str) -> pd.DataFrame:
"""
Loads CSV data into a pandas DataFrame.
Args:
file_path (str): Path to the CSV file.
Returns:
pd.DataFrame: Loaded dataset.
"""
if not os.path.exists(file_path):
raise FileNotFoundError(f"File not found: {file_path}")
return pd.read_csv(file_path)