Spaces:
Sleeping
Sleeping
File size: 272 Bytes
4856467 | 1 2 3 4 5 6 7 8 9 10 11 | import pandas as pd
from src.config import TRAIN_PATH, TEST_PATH
def load_raw_data():
train_df = pd.read_csv(TRAIN_PATH)
test_df = pd.read_csv(TEST_PATH)
print(f"[Load] Train: {train_df.shape} Test: {test_df.shape}")
return train_df, test_df
|