重命名 refs 为 algorithm_subprocesses,并清理误提交的权重与缓存文件。

算法子进程目录仅保留源码与配置;权重、样本 I/O、构建产物通过 .gitignore 离线交付。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Kevin
2026-05-21 16:10:08 +08:00
parent 1af442481e
commit 70431ca3f9
19 changed files with 88 additions and 34 deletions

View File

@@ -0,0 +1,44 @@
# 算法子进程包algorithm subprocess bundles
# 源码与配置保留在 git权重、样本 I/O、构建缓存离线交付或挂载。
# 详见 algorithm_subprocesses/5.15/README.md §「准备权重与输入」。
# --- 运行时 I/O保留 .gitkeep---
**/weights/*
!**/weights/.gitkeep
**/input/*
!**/input/.gitkeep
**/output/*
!**/output/.gitkeep
**/data/*
!**/data/.gitkeep
# --- 大文件 / 离线资产 ---
*.pt
*.pth
*.pth.tar
*.pkl
*.task
*.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/