Files
operating-room-monitor-server/backend/algorithm_subprocesses/.gitignore
Kevin c5716cf0af 恢复 algorithm_subprocesses 权重文件的 git 追踪。
权重目录与 doctor_info.pth 纳入版本库;样本视频、Excel、构建缓存仍保持 ignore。

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

38 lines
860 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
# --- 子包运行时(非权重)---
doctor_identity_package/.mediapipe_models/
**/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/