- Use bash array for SCENARIOS to avoid word-splitting - Fix metadata config (tp=4, scenarios as array) - Rewrite parse_results.py for sglang.bench_serving --output-details format - Update .gitignore to keep experiments/*/results/*.json and *.md, ignore only raw_outputs/ and logs/ subdirs - First successful run: 20260708-062348
32 lines
499 B
Plaintext
32 lines
499 B
Plaintext
# 环境/依赖/临时文件
|
||
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 和日志
|
||
experiments/*/results/raw_outputs/
|
||
experiments/*/results/logs/
|
||
|
||
# 无关项目
|
||
loomeval_yy/
|