Files
saw_mill_knot_detection/.gitignore
dillonj f458eeee82 Add multi-framework dataset setup for RF-DETR, YOLOX, and YOLOv6
- Create dataset_coco/ for RF-DETR (COCO format)
- Rename dataset_split/ to dataset_yolo/ for clarity
- Add setup_datasets.py script for automated multi-format setup
- Update YOLOv6 script with correct 10-class configuration
- Update README with framework comparison and training instructions
- Update .gitignore to exclude both dataset directories
2025-12-22 14:48:17 -07:00

59 lines
499 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_yolo/
dataset_coco/
*.jpg
*.jpeg
*.png
*.gif
bbox_coco_dataset.json
# Training outputs
train_output/
results/
*.log
# Jupyter
.ipynb_checkpoints/
*.ipynb
# OS
.DS_Store
Thumbs.db