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
3 changes: 3 additions & 0 deletions .dvc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/config.local
/tmp
/cache
4 changes: 4 additions & 0 deletions .dvc/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[core]
remote = localstorage
['remote "localstorage"']
url = ~/dvc_storage
3 changes: 3 additions & 0 deletions .dvcignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Add patterns of files dvc should ignore, which could improve
# the performance. Learn more at
# https://dvc.org/doc/user-guide/dvcignore
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ __pycache__/
.ipynb_checkpoints/
data/*
!data/.gitkeep
*.dvc
!.dvc
!data/raw/raw_data.csv.dvc
!data/cleaned/cleaned_data.csv.dvc
5 changes: 5 additions & 0 deletions data/cleaned/cleaned_data.csv.dvc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
outs:
- md5: d8bb55b2fb1adad6e6394880d31c53c0
size: 274013532
hash: md5
path: cleaned_data.csv
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.
Loading