重命名 refs 为 algorithm_subprocesses,并清理误提交的权重与缓存文件。
算法子进程目录仅保留源码与配置;权重、样本 I/O、构建产物通过 .gitignore 离线交付。 Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
44
backend/algorithm_subprocesses/.gitignore
vendored
Normal file
44
backend/algorithm_subprocesses/.gitignore
vendored
Normal 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/
|
||||
Reference in New Issue
Block a user