feat(tasks): Add RASB 26H1 evaluator integration#943
Open
pbelcak wants to merge 1 commit intoNVIDIA-NeMo:mainfrom
Open
feat(tasks): Add RASB 26H1 evaluator integration#943pbelcak wants to merge 1 commit intoNVIDIA-NeMo:mainfrom
pbelcak wants to merge 1 commit intoNVIDIA-NeMo:mainfrom
Conversation
Signed-off-by: Peter Belcak <pbelcak@nvidia.com>
Contributor
|
@pbelcak Please let us know if you need any support from the Evaluator team on this PR. Thanks! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(tasks): Add RASB 26H1 evaluator integration
What is RASB 26H1?
RASB 26H1 is the first snapshot of the Real Agent Scaffolds Bench. You can find the details of the benchmark in the tech report (NVIDIA Internal link).
Summary
Adds RASB 26H1 as a NeMo Evaluator task:
rasb-26h1.rasb_26h1harness, runner, output parser, and unit tests.docker/rasb-26h1-local/.packages/nemo-evaluator-launcher/examples/local_rasb_26h1.yaml.docs/evaluation/benchmarks/rasb-26h1.mdand links it from the benchmark catalog.framework.yml,README.md, andQUICKSTART.md.localhost/rasb-26h1:local.Motivation
RASB runs each benchmark environment inside its own Docker container. This integration lets NeMo Evaluator and NeMo Evaluator Launcher run the benchmark while preserving RASB's existing per-environment Docker lifecycle.
The generic launcher changes are limited to what is needed for local RASB development images: recognizing loopback/local image references and skipping registry metadata extraction for those local references.
Validation
Ran focused unit tests:
Result:
17 passedResult:
22 passedAdditional checks:
Also ran a one-environment RASB smoke test against
azure/anthropic/claude-opus-4-5usinghttps://inference-api.nvidia.com.Result:
Documentation
Added:
docs/evaluation/benchmarks/rasb-26h1.mdREADME.mdQUICKSTART.mdThe docs cover the local image flow, NGC image flow, dataset location, endpoint configuration, and RASB's nested Docker requirement.
Backwards Compatibility
This should not affect existing benchmark tasks. The tiny launcher behavior change only applies to explicit local/loopback image references such as
localhost/...,localhost:port/...,127.0.0.1:port/..., or local image file paths.