66 lines
675 B
Plaintext
66 lines
675 B
Plaintext
# Python virtual environment
|
|
venv/
|
|
env/
|
|
.env/
|
|
.venv/
|
|
|
|
# Python cache files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.pytest_cache/
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# YOLO specific
|
|
runs/
|
|
*.pt
|
|
weights/
|
|
|
|
# Project specific
|
|
torch_compile_debug/
|
|
training/train/
|
|
training/val/
|
|
dataset.yaml
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
.DS_Store
|
|
temp/
|
|
tmp/
|
|
|
|
# Debug directories
|
|
torchinductor_*/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
*.cache
|
|
|
|
# Test coverage
|
|
coverage_html_report/
|
|
.coverage
|
|
htmlcov/
|
|
test_results/
|
|
|
|
# Compiled files
|
|
*.so
|
|
*.dll
|
|
*.dylib
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
*.ipynb
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|