dataset_id — the task supplies its own rows.
Catalog
List the live catalog anytime:
Running a benchmark
Sample limits
sample_limit caps how many rows run (--n on the CLI). The subset is sampled deterministically per run, so an interrupted-and-resumed run scores the same rows. Fewer samples = faster and cheaper; the full split gives the most stable score. For quick checkpoint comparisons, 50–100 samples is usually enough to see a meaningful gap.
Speed
Samples run concurrently — up to 100 in flight against your deployment’s serving replicas. A 100-sample GSM8K run completes in roughly the time of a handful of sequential requests, bounded by your deployment’s throughput rather than the eval engine.Sandboxed code execution
humaneval completions are never executed on platform infrastructure. Each sample gets its own ephemeral sandbox:
- The model’s completion is combined with the task’s unit tests into a standalone program.
- A fresh sandbox is created, the program runs with a hard timeout, and the sandbox is destroyed.
- Exit code 0 = pass (1.0), anything else = fail (0.0). Sandbox infrastructure failures count as
error_count, not as failures.
Scoring notes
- gsm8k — the scorer extracts the last number in the model’s output (handling
####-style answer markers and formatting like commas) and compares it to the reference answer. Encourage your model to end with the bare answer for best results; chain-of-thought before it is fine. - humaneval — pass@1 with a single completion per problem. Markdown code fences in the output are stripped automatically; indentation is preserved.

