forked from PiTracLM/PiTrac
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
100 lines (86 loc) · 2.46 KB
/
.gitignore
File metadata and controls
100 lines (86 loc) · 2.46 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
.gitignore# Visual Code
# Ignoring root .vscode folder.
.vscode/
# Ignoring ~/build inside LMSourceCode
/Software/LMSourceCode/ImageProcessing/build
# Ignoring Jekyl Site files.
**/_site/
docs/_site/
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
docs/assets/js/search-data.json
# Prevent committing prebuilt Just the Docs CSS/JS (generated by Jekyll)
docs/assets/css/just-the-docs-*.css
docs/assets/css/just-the-docs-*.css.map
docs/assets/js/just-the-docs.js
docs/assets/js/*search-data*.json
# Ignore folders generated by Bundler
.bundle/
vendor/
HELP.md
out/
**/target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
.DS_Store
**/.DS_Store
# Package Files #
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
**/.idea
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
# GroundTruthAnnotator - AI Training System
# Pre-trained models (auto-downloaded by YOLO)
Software/GroundTruthAnnotator/yolo11n.pt
Software/GroundTruthAnnotator/yolov8n.pt
# Training temporary files and artifacts
Software/GroundTruthAnnotator/experiments/*/weights/epoch*.pt
Software/GroundTruthAnnotator/experiments/*/weights/last.pt
Software/GroundTruthAnnotator/experiments/*/train_batch*.jpg
Software/GroundTruthAnnotator/experiments/*/val_batch*.jpg
Software/GroundTruthAnnotator/experiments/*/confusion_matrix*.png
Software/GroundTruthAnnotator/experiments/*/Box*.png
Software/GroundTruthAnnotator/experiments/*/labels.jpg
Software/GroundTruthAnnotator/experiments/*/results.png
Software/GroundTruthAnnotator/experiments/*/predictions.json
# Keep only best weights (final trained models)
!Software/GroundTruthAnnotator/experiments/*/weights/best.pt
!Software/GroundTruthAnnotator/experiments/*/weights/best.onnx
# Build artifacts
Software/GroundTruthAnnotator/build/
Software/GroundTruthAnnotator/__pycache__/
# Runtime outputs
Software/GroundTruthAnnotator/runs/
Software/GroundTruthAnnotator/test_output/
Software/GroundTruthAnnotator/complete_benchmark_output/
Software/GroundTruthAnnotator/training_log.json
# Working directories (should remain empty in repo)
Software/GroundTruthAnnotator/unprocessed_training_images/*
!Software/GroundTruthAnnotator/unprocessed_training_images/README.md
# Cache files
Software/GroundTruthAnnotator/yolo/labels/*.cache
# Dev scripts cache
Dev/scripts/__pycache__
packaging/pitrac