Mask R-CNN instance segmentation training code

This commit is contained in:
flk
2026-08-10 01:20:28 +08:00
commit 61f6ea918e
16 changed files with 2026 additions and 0 deletions
+38
View File
@@ -0,0 +1,38 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
dist/
build/
*.egg
# 虚拟环境
env/
venv/
.venv/
# PyTorch 模型权重(体积大,不纳入版本控制)
model/*.pth
checkpoints/*.pth
# 训练输出
checkpoints/loss_curve.png
checkpoints/loss_history.json
checkpoints/label_map.json
predictions/
# IDE
.idea/
.vscode/
*.swp
*.swo
# OS
Thumbs.db
Desktop.ini
.DS_Store
# 日志
*.log