-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
111 lines (92 loc) · 2.16 KB
/
.gitignore
File metadata and controls
111 lines (92 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
# =========================
# OS / IDE / Python cache
# =========================
.DS_Store
.vscode/
.idea/
__pycache__/
*.py[cod]
*.pyo
.ipynb_checkpoints/
# =========================
# Environments / local system
# =========================
.env
.venv/
venv/
.micromamba/
.conda/
mlflow.db
mlruns/
# =========================
# Local aggregated artifacts
# =========================
summary_runs_from_json.csv
# =========================
# Data
# =========================
# Raw and interim data are local only
data/raw/
data/interim/
data/.DS_Store
# Keep selected processed parquet datasets in the repo
data/processed/*
!data/processed/
!data/processed/train.parquet
!data/processed/external.parquet
!data/processed/diabetes_saliva.parquet
# GDB small-n is local only and is not versioned
data/processed/gdb_smalln.parquet
# =========================
# Reports
# =========================
# Ignore everything in reports by default
reports/*
!reports/
!reports/.gitkeep
# Keep compact summary files that are useful for the thesis / repo
!reports/meta_only_diabetes_holdout.csv
# ---- exp ----
!reports/exp/
reports/exp/*
!reports/exp/summary.csv
# ---- pca_r2 ----
!reports/pca_r2/
reports/pca_r2/*
!reports/pca_r2/dimdesc_r2_summary.csv
!reports/pca_r2/dimdesc_r2_best_pc_per_factor.csv
# ---- clustering ----
!reports/clustering/
reports/clustering/*
!reports/clustering/clustering_metrics_stability.csv
!reports/clustering/clustering_top5_per_method.csv
# ---- qc_r2 ----
!reports/qc_r2/
reports/qc_r2/*
!reports/qc_r2/summary_method.csv
!reports/qc_r2/summary_label_method.csv
# ---- final results for thesis / commission ----
!reports/final/
reports/final/*
!reports/final/README_results.md
!reports/final/*.csv
!reports/final/*.md
# ---- figs ----
# Keep only final thesis-ready figures, not all generated plots
!reports/figs/
reports/figs/*
!reports/figs/*.png
!reports/figs/*.pdf
# ---- eda_qc ----
# EDA/QC run folders are generated locally and are not versioned
reports/eda_qc/
# =========================
# Archives / logs / misc
# =========================
*.log
*.rar
*.zip
EOF
.pytest_cache/
# PCA/R2 run-level intermediate outputs
reports/final/pca_r2/gdb_*_nomix_seed*/