Files
saw_mill_knot_detection/.gitignore
2025-12-22 14:16:02 -07:00

58 lines
486 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
*.egg
# Virtual Environment
.venv/
venv/
ENV/
env/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Model checkpoints and weights
*.pt
*.pth
*.onnx
*.blob
*.xml
*.bin
checkpoints/
weights/
runs/
# Dataset (large files)
IMAGE/
images/
dataset_split/
*.jpg
*.jpeg
*.png
*.gif
bbox_coco_dataset.json
# Training outputs
train_output/
results/
*.log
# Jupyter
.ipynb_checkpoints/
*.ipynb
# OS
.DS_Store
Thumbs.db