Files
operating-room-monitor-server/backend/algorithm_subprocesses/.gitignore
Kevin e6434d0bb6 补提交 doctor_identity 所需的 MediaPipe 模型文件。
与权重一并纳入 git,便于 clone 后直接运行医生识别子进程。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 16:13:01 +08:00

37 lines
817 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 算法子进程包algorithm subprocess bundles
# 权重weights/、doctor_info.pth 等)纳入 git样本 I/O、构建缓存、运行时产物忽略。
# 详见 algorithm_subprocesses/5.15/README.md §「准备权重与输入」。
# --- 运行时 I/O保留 .gitkeep---
**/input/*
!**/input/.gitkeep
**/output/*
!**/output/.gitkeep
**/data/*
!**/data/.gitkeep
# --- 离线样本 / 表格(本地准备,不进 git---
*.mp4
*.xlsx
*.xls
**/商品信息表.xlsx
# --- 子包运行时(非权重)---
**/infer_single_*/input/
**/*_run.log
**/output/result.txt
# --- Python 构建与缓存(子进程内 pip install / 编译产物)---
**/__pycache__/
**/*.py[cod]
**/*$py.class
**/.pytest_cache/
**/.mypy_cache/
**/.ruff_cache/
**/.cache/
**/build/
**/*.egg-info/
**/*.so
**/*.o
**/dist/