权重目录与 doctor_info.pth 纳入版本库;样本视频、Excel、构建缓存仍保持 ignore。 Co-authored-by: Cursor <cursoragent@cursor.com>
38 lines
860 B
Plaintext
38 lines
860 B
Plaintext
# 算法子进程包(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/
|