Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions notebooks/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Notebooks

This folder contains exploratory and modeling notebooks.
This folder contains Jupyter notebooks for exploratory data analysis (EDA), feature engineering, and modeling.

- `eda.ipynb`: Exploratory Data Analysis
- `task_1/`: Notebooks related to Task 1 (e.g., data understanding, preprocessing).

Notebooks are organized by task or experiment for reproducibility.
9 changes: 7 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Source Code

This folder holds all reusable Python code for:
- `eda.py`: Exploratory Data Analysis helpers
This folder contains reusable Python modules for the project.

- `data_loader.py`: Functions for loading and saving data.
- `preprocessing.py`: Data cleaning and preprocessing utilities.
- `config.py`: Configuration and path management.

Import these modules in notebooks and scripts to avoid code duplication.