Initial commit: Wood knot detection model and GUI
This commit is contained in:
56
.gitignore
vendored
Normal file
56
.gitignore
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
# 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/
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.png
|
||||
*.gif
|
||||
bbox_coco_dataset.json
|
||||
|
||||
# Training outputs
|
||||
train_output/
|
||||
results/
|
||||
*.log
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints/
|
||||
*.ipynb
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Reference in New Issue
Block a user