-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
95 lines (78 loc) · 939 Bytes
/
.gitignore
File metadata and controls
95 lines (78 loc) · 939 Bytes
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
# macOS
.DS_Store
# Python cache/artifacts
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
*.egg
*.log
# Virtual environments
.venv/
venv/
venv*/
venv312/
venv312/**
# IDE/editor
.vscode/
.idea/
# Jupyter
.ipynb_checkpoints/
# Tracking reports (JSON)
tracking_report_*.json
tracking_report_session_*.json
# Python
venv/
__pycache__/
*.pyc
.env
# VSCode
.vscode/
# macOS
.DS_Store
# 기타
*.log
# YOLO 훈련 결과 및 모델 파일
runs/
*.pt
*.onnx
*.pth
*.weights
*.cfg
# API 결과 및 업로드 파일
api_results/
uploads/
stored_persons/
# 데이터셋 파일
*.jpg
*.jpeg
*.png
*.mp4
*.avi
*.mov
*.mkv
*.wmv
*.flv
# 훈련 결과 이미지
train_batch*.jpg
val_batch*.jpg
confusion_matrix*.png
results*.png
labels_correlogram.jpg
results.csv
# 로그 파일
*.log
logs/
# 임시 파일
temp/
tmp/
*.tmp
# 환경 변수
.env
.env.local
.env.production
# AWS 자격 증명 (보안상 중요!)
.aws/
credentials