Datasets:
HF README: fix CLI flags (plural), document mock model, lb90 result paths
Browse files
README.md
CHANGED
|
@@ -46,7 +46,7 @@ dataset_info:
|
|
| 46 |
|
| 47 |
# TeamBench
|
| 48 |
|
| 49 |
-
A multi-agent coordination
|
| 50 |
|
| 51 |
This Hugging Face dataset is the structured metadata layer. The task workspaces, generators, deterministic graders, and the evaluation harness live in the GitHub repository: <https://github.com/ybkim95/TeamBench>.
|
| 52 |
|
|
@@ -78,7 +78,8 @@ The dataset metadata is enough to filter and inspect tasks. To actually score a
|
|
| 78 |
```bash
|
| 79 |
git clone https://github.com/ybkim95/TeamBench.git
|
| 80 |
cd TeamBench
|
| 81 |
-
pip install -e .
|
|
|
|
| 82 |
|
| 83 |
export ANTHROPIC_API_KEY=...
|
| 84 |
export OPENAI_API_KEY=...
|
|
@@ -86,13 +87,22 @@ export GEMINI_API_KEY=...
|
|
| 86 |
|
| 87 |
# Run a task across all 5 ablation conditions, seed 0
|
| 88 |
python -m harness.ablation \
|
| 89 |
-
--task DIST1_queue_race \
|
| 90 |
--model gemini-3-flash-preview \
|
| 91 |
-
--
|
| 92 |
-
--
|
|
|
|
|
|
|
| 93 |
```
|
| 94 |
|
| 95 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 96 |
|
| 97 |
## Five conditions
|
| 98 |
|
|
|
|
| 46 |
|
| 47 |
# TeamBench
|
| 48 |
|
| 49 |
+
A benchmark for evaluating multi-agent LLM coordination under **OS-enforced** Planner / Executor / Verifier role separation. **931 evaluation instances · 19 categories · 5 ablation conditions.**
|
| 50 |
|
| 51 |
This Hugging Face dataset is the structured metadata layer. The task workspaces, generators, deterministic graders, and the evaluation harness live in the GitHub repository: <https://github.com/ybkim95/TeamBench>.
|
| 52 |
|
|
|
|
| 78 |
```bash
|
| 79 |
git clone https://github.com/ybkim95/TeamBench.git
|
| 80 |
cd TeamBench
|
| 81 |
+
pip install -e ".[all]"
|
| 82 |
+
docker compose build
|
| 83 |
|
| 84 |
export ANTHROPIC_API_KEY=...
|
| 85 |
export OPENAI_API_KEY=...
|
|
|
|
| 87 |
|
| 88 |
# Run a task across all 5 ablation conditions, seed 0
|
| 89 |
python -m harness.ablation \
|
|
|
|
| 90 |
--model gemini-3-flash-preview \
|
| 91 |
+
--tasks DIST1_queue_race \
|
| 92 |
+
--seeds 0 \
|
| 93 |
+
--conditions oracle restricted full team_no_plan team_no_verify \
|
| 94 |
+
--output shared/runs/example
|
| 95 |
```
|
| 96 |
|
| 97 |
+
The deterministic grader emits `score.json` per (task, condition) under `shared/runs/example/`. Aggregate with:
|
| 98 |
+
|
| 99 |
+
```bash
|
| 100 |
+
python -m harness.compute_tni \
|
| 101 |
+
--ablation shared/ablation_results/lb90_<your-model>_seed0.json \
|
| 102 |
+
--output shared/ablation_results/tni_<your-model>.json
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
No keys handy? `--model mock` runs an in-process stub that exercises the grader pipeline end-to-end without provider calls.
|
| 106 |
|
| 107 |
## Five conditions
|
| 108 |
|