-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (39 loc) · 1 KB
/
Copy path.gitignore
File metadata and controls
45 lines (39 loc) · 1 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
# --- Environments ---
.env
.venv/
venv/
**/__pycache__/
frontend/node_modules/
# NOTE: frontend/public/india-states.json used to be ignored here. It is static
# district geometry, not a generated file -- ignoring it meant a fresh clone had
# no map and the choropleth rendered blank.
# --- Generated Data, Models & Artifacts ---
# Regenerate with: python -m models.anomaly && python -m models.classifier
#
# The RUNTIME artifacts are committed so the deployed instance (Render) serves
# without a training step or torch. The build-time-only artifacts -- the
# autoencoder weights and its scaler, used solely to regenerate novelty.csv --
# stay ignored.
artifacts/*
!artifacts/pattern_classifier.joblib
!artifacts/novelty.csv
!artifacts/risk_drivers.json
!artifacts/pattern_metrics.json
!artifacts/anomaly_metrics.json
*.egg-info/
*.egg
*.so
# --- IDEs and OS-specific ---
.vscode/
.idea/
.DS_Store
*.swp
# --- Logs and Build Outputs ---
*.log
frontend/dist/
# Neo4j local database
neo4j/
*.db
*.transaction*
*.id
*.lock