This commit is contained in:
wassname
2023-11-02 16:09:45 +08:00
parent f0c653b36b
commit cb19795bdf
7 changed files with 7 additions and 3 deletions
+3 -3
View File
@@ -7,9 +7,9 @@
├── Justfile <- Makefile with commands like `make data` or `make train`
├── README.md <- The top-level README for developers using this project.
├── data
│   ├── interim <- Intermediate data that has been transformed.
│   ├── processed <- The final, canonical data sets for modeling.
│   └── raw <- The original, immutable data dump.
│   ├── 30_processed <- The final, canonical data sets for modeling.
│   ├── 20_interim <- Intermediate data that has been transformed.
│   └── 10_raw <- The original, immutable data dump.
├── notebooks <- Jupyter notebooks. Namiwith creator's initials, a number (for ordering), and short `-` delimited description, e.g.
@@ -0,0 +1,4 @@
from pathlib import Path
# Project root directory
ROOT_DIR = Path(__file__).parent.parent