-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
100 lines (78 loc) · 1.56 KB
/
.gitignore
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
# Python cache files
__pycache__/
*.pyc
*.pyo
# Environment or virtual environment directories
env/
venv/
ENV/
# Model files (e.g., PyTorch, ONNX)
*.pt
*.onnx
# OS-specific files
.DS_Store
Thumbs.db
# Logs
*.log
# Ignore database files
*.sqlite3
# Ignore Jupyter Notebook checkpoints
.ipynb_checkpoints/
# Ignore any other temporary files or build directories
build/
dist/
*.egg-info/
# Ignore VSCode workspace files
.vscode/
# Ignore images generated by OpenCV (if saving frames to disk)
*.jpg
*.jpeg
*.png
*.bmp
# Ignore output folders if any
output/
results/
# Ignore specific files in the project
models/custom_model.onnx
output_frame.jpg
# Ignore batch scripts
install_pytorch_only.bat
install_pytorch_cpu_only.bat
main-launcher.bat
config-launcher.bat
update_ultralytics.bat
requirements.bat
# Ignore Rust target and debug directories
target/
debug/
# Ignore main.py and config.py
main.py
config.py
# Ignore instruction files
nodejs-instructions.ps1
cudnn_instructions.js
# Ignore Rust files
main.rs
Cargo.lock
Cargo.toml
# Ignore zip files
*.zip
# Ignore text files
*.txt
# Ignore markdown files
*.md
# Ignore specific folders
src/
models/
banner/
# Ignore Rust files
Game_Vision_Aid/main.rs
Game_Vision_Aid/Cargo.lock
Game_Vision_Aid/Cargo.toml
# Ignore AMD-GPU-ONLY folder and its contents
AMD-GPU-ONLY/amg_gpu_requirements.bat
AMD-GPU-ONLY/amdgpu-launcher.bat
AMD-GPU-ONLY/config-launcher.bat
AMD-GPU-ONLY/config.py
AMD-GPU-ONLY/main.py
AMD-GPU-ONLY/requirements.txt