Files
jc-video-recognize/.gitignore
wwh 364b4ac189 feat: Add AI model files with Git LFS
Add 5 YOLO model files for video detection:
- fire_detection/best.pt (61MB) - YOLOv10 fire and smoke detection
- helmet_detection/yolov8n.pt (6.2MB) - YOLOv8 helmet detection
- crowd_detection/yolov8l.pt (84MB) - YOLOv8 crowd gathering detection
- smoking_detection/smoking_yolov8n.pt (5.9MB) - YOLOv8 smoking detection
- loitering_detection/yolov8n.pt (6.2MB) - YOLOv8 loitering detection

Configure Git LFS to track *.pt files
Update .gitignore to allow .pt files (now managed by LFS)
2026-05-18 11:21:22 +08:00

64 lines
626 B
Plaintext

# Dependencies
node_modules/
.pnp
.pnp.js
# Build outputs
dist/
dist-ssr/
*.local
build/
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
# Testing
coverage/
.nyc_output/
# Turbo
.turbo/
# Model files (now managed by Git LFS)
# *.pt files are tracked by Git LFS
*.onnx
*.pth
*.weights
# Static uploads
apps/server/static/uploads/
apps/server/static/results/
apps/server/static/temp/
# Environment files
.env
.env.local
.env.*.local