# ---------- 输入（视频、Excel/表、转码产物，本地放置）----------
/input/*
!/input/.gitkeep

# ---------- 推理结果（保留空目录占位）----------
/output/*
!/output/.gitkeep

# ---------- 模型权重（setup.sh 检查，需本地放置）----------
/weights/*
!/weights/.gitkeep

doctor_identity_package/*.pth
doctor_identity_package/.mediapipe_models/

# 其他数据目录（若从 vendor 拷贝 Excel/权重）
/data/

# ---------- 运行期临时 / 缓存 ----------
*.pth.tar
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
.env
*.egg-info/
dist/
build/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage

# ---------- Jupyter / 编辑器临时 ----------
.ipynb_checkpoints/
*.swp
*~

# ---------- IDE / 系统 ----------
.DS_Store
.idea/
.vscode/
