-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
96 lines (75 loc) · 1.74 KB
/
.gitignore
File metadata and controls
96 lines (75 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
85
86
87
88
89
90
91
92
93
94
95
96
# AFQ-Insight-Autoencoder-Plotting .gitignore
# This file ignores all temporary/transferred content while keeping analysis code
# CSV Files - Training metrics and performance data
csv_files/
*.csv
**/csv_files/**
# Model Weights - PyTorch model files
model_weights/
*.pth
**/model_weights/**
# Generated Plots and Visualizations
plots/
**/plots/**
*.png
*.jpg
# Confusion Matrices and Classification Results
confusion_matrix/
**/confusion_matrix/**
# Heatmaps
heatmaps/
**/heatmaps/**
# Summaries
summaries/
**/summaries/**
# Log Files from Experiments
*.out
*.log
*.err
slurm-*.out
# Jupyter Notebook checkpoints
.ipynb_checkpoints/
*/.ipynb_checkpoints/*
# Environments
.env
.venv
env/
# Individual tract directories with results
TRACT_RANKING/tract_*/
!TRACT_RANKING/tract_*/.gitkeep
# Training averages data (generated)
training_averages/*.csv
training_averages/plots/
# Results summary data (generated)
results_summary/*.csv
# Any experiment-specific log files
experiment_*.log
training_*.log
# =============================================================================
# EXCEPTIONS - Files to KEEP despite patterns above
# =============================================================================
# Keep README files everywhere
!README.md
!**/README.md
# Keep analysis notebooks and scripts
!*.ipynb
!*.py
# Keep configuration templates and examples
!**/example_*.csv
!**/template_*.json
!config_template.*
# Keep directory structure files
!.gitkeep
!**/.gitkeep
# Keep documentation
!*.md
!docs/
# Keep specific configuration files that are part of the repo
!tract_names.json
!tract_data_types.json
!TRACT_RANKING/tract_names.json
!TRACT_RANKING/tract_data_types.json
# Keep requirements and setup files
!requirements.txt
!setup.py
!environment.yml