69 lines
637 B
Plaintext
69 lines
637 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
.env
|
|
.venv
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# PyCharm
|
|
.idea/
|
|
|
|
# VS Code
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# YOLO specific
|
|
runs/*
|
|
!runs/.gitkeep
|
|
results/*
|
|
!results/.gitkeep
|
|
|
|
# Preprocessed data (temporary)
|
|
*-processed/
|
|
*-processed-*/
|
|
|
|
# Model weights (except best models)
|
|
yolov8*.pt
|
|
!yolov8n.pt
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Test outputs
|
|
test_output/
|
|
temp/
|