sskj/.gitignore
yy-fighting 69756c598c fix: ignore nested backend raw_outputs/logs and remove accidentally committed intermediate files
- Update .gitignore to handle results/<run_id>/<backend>/raw_outputs/ structure
- Remove in-progress SGLang vs vLLM raw jsonl and partial results from git index
2026-07-08 08:15:39 +00:00

35 lines
671 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.

# 环境/依赖/临时文件
envs/
deps/
tmp/
*.pid
__pycache__/
*.pyc
*.pyo
*.egg-info/
# 大文件/压缩包
*.zip
*.tar.gz
*.tar.bz2
# 中间日志
logs/
*.log
# 数据集(可重新下载)
datasets/
# 原始请求级输出(方案 A极简版不存原始 jsonl
bench_results/**/raw_outputs/
# 实验级原始结果目录:保留 report.md / results.json忽略原始 jsonl 和日志
# 兼容两种结构results/<run_id>/raw_outputs/ 和 results/<run_id>/<backend>/raw_outputs/
experiments/*/results/*/raw_outputs/
experiments/*/results/*/logs/
experiments/*/results/*/*/raw_outputs/
experiments/*/results/*/*/logs/
# 无关项目
loomeval_yy/