-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
84 lines (71 loc) · 1.74 KB
/
Copy path.gitignore
File metadata and controls
84 lines (71 loc) · 1.74 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
# Python
venv/
env/
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# Jupyter
.ipynb_checkpoints/
*.ipynb_checkpoints
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
# Data - Real MIMIC-III (cannot be shared publicly)
data/root/
data/in-hospital-mortality*/
# Data - Large synthetic datasets (keep only small example)
data/mimic3_synthetic/train/
data/mimic3_synthetic/test/
data/mimic3_synthetic_v2_1/
# Keep: data/mimic3_synthetic_v3/ (small example for reproducibility)
# Models - Large files (optional: use Git LFS or releases)
models/*.h5
models/*.pb
models/scaler.pkl
# Consider keeping for reproducibility:
# !models/best_model_calibrated.keras
# !models/calibrator.pkl
# !models/optimal_threshold.txt
# Logs (generated during execution)
logs/
*.log
# Results - Ignore generated files, keep reference outputs
results/plots/*.png
!results/plots/roc_curve.png
!results/plots/summary_metrics.png
!results/plots/comparison_table.png
!results/plots/calibration_curve.png
!results/plots/confusion_matrix.png
!results/plots/fbeta_vs_threshold.png
!results/plots/improvement_chart.png
!results/plots/learning_curves_dl.png
!results/plots/metrics_comparison.png
!results/plots/pr_comparison.png
!results/plots/precision_recall_curve.png
!results/plots/probability_distribution.png
!results/plots/roc_comparison.png
!results/plots/threshold_vs_metrics.png
results/*.npy
results/*.pdf
!results/*.json
!results/*.md
# Documentation - Keep compiled paper
!docs/*.pdf
# OS
.DS_Store
Thumbs.db
# Temporary
*.tmp
*.bak
# Archived - Not versioned (local reference only)
# Includes: LaTeX source, Portuguese docs, planning/analysis documents
archived/
# External dependencies (cloned repositories)
mimic3-benchmarks/
# Old project directories (not part of current structure)
systematic_review/