correct observation.
FrontierScience uses single-sided judging. The judge only assesses the agent-under-test’s answer against the reference, without comparing to any baseline. Both inference and judging run in the local process (host_process) — the harness first drives the model under test through the search loop to produce a final answer, then the judge model grades it.
How it works
A FrontierScience run has two stages — inference and judging — where the judging stage applies the grading rule that matches each task’s type.Inference and judging
- Inference. The model under test acts as a search agent and, driven by the harness (default
naive_search_agent), completes multi-turn tool loops such as search / visit per task, producing a natural-language answer. - Judging. The judge model (
judge_model) receives the question, the reference (a short reference answer or a scoring rubric, depending on the task type), and the answer under test, then grades it. The judge and the model under test are two separate endpoints;judge_modelmust be specified explicitly.
How the two task types are graded
The grading rule is not selected by a run parameter — it is determined by the task itself. A task whosecategory is research is graded as **FrontierScience-Research ; otherwise (olympiad) it is graded as ** FrontierScience-Olympiad. Because this is decided per task, a single run can contain both.
-
FrontierScience-Olympiad — short-answer grading. The reference is one short answer: a number, a symbolic expression, or a short phrase. The judge compares the candidate’s final answer to it and:
- accepts mathematically equivalent expressions and harmless formatting differences;
- accepts minor wording differences that preserve the same scientific meaning;
- grades incorrect ** if the candidate states ** multiple conflicting final answers;
- judges only what the candidate actually wrote, without supplying missing steps on its behalf.
correct. -
FrontierScience-Research — rubric grading. The reference is a multi-item scoring rubric worth 10 points in total. The judge scores the answer ** item by item , awarding partial credit per item (each capped at that item’s max points), then sums the awarded points into a total on a 0–10 scale. Both final conclusions and intermediate reasoning steps can earn points, but only what the answer actually supports is credited — unstated work earns nothing. The task is ** correct ** when the total score is ** at least the pass threshold
research_pass_threshold(default7.0).
Parameters
Pass a JSON object via--benchmark-params '{...}', or a benchmark.params block in the YAML given to --config; the CLI wins on shared keys. See the Benchmark overview for merge precedence.
Parameter reference
| Parameter | Type | Default | Choices / values | Description |
|---|---|---|---|---|
judge_model | dict | null | id, base_url, api_key, api_protocol, params | Judge model spec, required (see Judge model spec). It decides grading, and is not the CLI —model-*. |
category | string / list | ”all" | "all”, olympiad, research | Filter tasks by category; “all” = no filter, a list takes the union. The two categories are the benchmark’s task types — olympiad (100 tasks) and research (60), 160 in total — so filtering by category also determines which grading rule the run uses. |
subject | string | ”all” | all / physics / chemistry / biology | Filter by scientific subject — a single value, not a list. all = no filter. Must be non-empty. |
research_pass_threshold | float | 7.0 | 0.0–10.0 | Pass mark for FrontierScience-Research tasks, on the rubric’s 0–10 scale: such a task is correct when its total rubric score is ≥ this value. Raise it to be stricter, lower it to be more lenient. Has no effect on olympiad short-answer tasks. |
sample_ids follow Benchmark Parameters. Configure repeated attempts with --k and --attempt-strategy; see Metrics and Aggregation.
Judge model spec
judge_model is passed as a dict with the fields id, base_url, api_key, api_protocol, and params, pointing to the judge model’s own endpoint, with inference parameters under params.
We recommend fixing a single judge across all models under test. Grading directly decides the scores, so switching judges makes scores no longer comparable across models; likewise, the model under test should not serve as its own judge, as that is neither fair nor comparable. AgentCompass recommends Qwen3.6-35B-A3B. Note that research-rubric grading is more nuanced than short-answer grading — it involves item-by-item scoring with partial credit — so a stronger, more capable judge improves rubric reliability.
Run examples
The FrontierScience run command has this form:frontierscience— the benchmark id;<harness>— the harness that drives the model under test through the search loop, defaulting tonaive_search_agent; its own configuration is passed via--harness-params;<model>— the model under test, i.e. the agent that performs retrieval and answering; its access credentials are passed via--model-base-url/--model-api-key.
--benchmark-params for dataset and judge settings, --harness-params for agent and tool settings, and --execution-params for phase timeouts and multipliers. YAML uses benchmark.params, harness.params, and execution; explicit CLI values override YAML values.
In the examples below, --harness-params always passes the Serper and Jina keys required for retrieval directly via serper_api_key / jina_api_key (the search / visit tools of naive_search_agent depend on them); the three examples differ only in --benchmark-params.
- Smoke test (single task end-to-end)
- Custom parameters
- AgentCompass recommended config
Use
sample_ids to evaluate a single task, verifying that the end-to-end inference and judging flow works; defaults for the rest.Outputs
A run writes per-task details and the aggregate viewssummary.md and metrics.json under the run directory.
Metric Contract and aggregate series
summary.md keeps the traditional metric and detail tables at k=1; at k>1, it shows the attempt plan plus headline and auxiliary series with independent Evaluated, Error, Unavailable, and Total counts. metrics.json preserves every series and breakdown.
The primary metric is binary correct. At k=1, correct.native@1 is the accuracy over evaluated observations, pooling both task types. An observation is true when its type-specific rule passes: the FrontierScience-Olympiad verdict is correct, or a FrontierScience-Research total score reaches research_pass_threshold. At k>1, the generic reducers can emit correct.avg@k and correct.pass@k, each with independent counts.
Per-task details (details/)
Each task has one JSON file. Its binary observation isattempts.<N>.metrics.correct, and judge evidence is recorded under attempts.<N>.meta.benchmark.scoring. Because the two task types report different diagnostics, the content of that namespace differs by type.
FrontierScience-Olympiad (evaluation_type = frontierscience_olympiad_judge):
FrontierScience-Research (
evaluation_type = frontierscience_research_rubric):
When judging fails (judge endpoint error, empty return, invalid JSON, and so on), the attempt has
status=eval_error; the failure reason is recorded in meta.benchmark.scoring.error (for example, judge_call_failed or invalid_json_response) and may include a truncated raw_response.