Files
violation-detector/.gitignore
T
yeuimu 08d26710b4 init: 商品图合规检测工具(豆包初筛 + DeepSeek 复检级联)
- src 标准布局:config/providers/pipeline/report + CLI/Tk GUI 双入口
- 级联省钱:豆包全量初筛,仅无违规/违规不明图进 DeepSeek 复检(含两票复核)
- 输出:时间戳目录 + 分类文件夹图片归档 + Excel 报表
- 30 个单元测试(tests/,测试图片不入库)
2026-09-02 15:28:51 +08:00

40 lines
555 B
Plaintext

# 打包与构建产物
build/
dist/
*.spec
# 本地实验脚本与数据归档
legacy/
tmp/
# 检测缓存(断点续跑数据,含运行记录)
runs/
# 检测输出(生成物)
output/
检测*/
# 密钥配置:真实 Key 不入库,用 config.example.ini 做模板(程序也会自动生成)
config.ini
# Python
__pycache__/
*.py[cod]
.venv/
.pytest_cache/
*.egg-info/
# 测试图片体积较大,不入库
tests/*.jpg
tests/*.jpeg
tests/*.png
tests/*.webp
tests/*.gif
tests/*.bmp
tests/*.tiff
# 系统杂项
Thumbs.db
.DS_Store
~$*