39 lines
408 B
Plaintext
39 lines
408 B
Plaintext
# 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
|