-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
69 lines (58 loc) · 1.13 KB
/
Copy path.gitignore
File metadata and controls
69 lines (58 loc) · 1.13 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
# secrets
config/secrets.yaml
.env
.venv/
# mac / python junk
.DS_Store
__pycache__/
*.pyc
# notebooks
.ipynb_checkpoints/
# local caches
cache/
data/cache/
# training outputs / huge files
runs/
# editable / build artifacts
*.egg-info/
dist/
build/
# data (keep minimal structure + eval labels)
data/*
!data/.gitkeep
!data/eval/
!data/eval/.gitkeep
!data/eval/labels.csv
# models/artifacts (keep folder marker only)
models/*
!models/.gitkeep
# optional: ignore full test set, keep a tiny sample set
test_images/*
!test_images/sample/
!test_images/sample/.gitkeep
!test_images/sample/*.jpg
!test_images/sample/*.jpeg
!test_images/sample/*.png
# dvc
.dvc/cache/
.dvc/tmp/
.dvc/config.local
# (Track dvc.yaml if you actually use DVC; otherwise delete it)
# dvc.yaml
# misc project-specific
config/assets.yaml
data/raw/sample_images.zip
scripts/dev/
integrations/pokemonpricetracker_api.py
src/pokemon_valuator/models/psa_grader_model.py
src/pokemon_valuator/utils/psa_feature_extractor.py
frontend/node_modules/
node_modules/
notebooks/
# runtime files
api/tmp_uploads/
api/cache_approvals.json
debug_price_*.json
*.pt
debug_price_*.json
.DS_Store