NVIDIA NeMo Evaluator-compatible container with Simple-Evals support. Based on simple-evals available at: https://github.com/openai/simple-evals
NVIDIA NeMo Evaluator
The goal of NVIDIA NeMo Evaluator is to advance and refine state-of-the-art methodologies for model evaluation, and deliver them as modular evaluation packages (evaluation containers and pip wheels) that teams can use as standardized building blocks.
Quick start guide
NVIDIA NeMo Evaluator provide you with evaluation clients, that are specifically built to evaluate model endpoints using our Standard API.
Launching an evaluation for an LLM
List the available evaluations:
$ nemo-evaluator ls
simple_evals:
* AA_AIME_2024
* AA_math_test_500
* AIME_2024
* aime_2024_nemo
* AIME_2025
* AIME_2025_aa_v2
* aime_2025_nemo
* browsecomp
* gpqa_diamond
* gpqa_diamond_aa_v2
* gpqa_diamond_aa_v2_llama_4
* gpqa_diamond_aa_v3
* gpqa_diamond_nemo
* gpqa_extended
* gpqa_main
* healthbench
* healthbench_consensus
* healthbench_hard
* humaneval
* humanevalplus
* math_test_500
* math_test_500_nemo
* mgsm
* mgsm_aa_v2
* mmlu
* mmlu_am
* mmlu_ar
* mmlu_ar-lite
* mmlu_bn
* mmlu_bn-lite
* mmlu_cs
* mmlu_de
* mmlu_de-lite
* mmlu_el
* mmlu_en
* mmlu_en-lite
* mmlu_es
* mmlu_es-lite
* mmlu_fa
* mmlu_fil
* mmlu_fr
* mmlu_fr-lite
* mmlu_ha
* mmlu_he
* mmlu_hi
* mmlu_hi-lite
* mmlu_id
* mmlu_id-lite
* mmlu_ig
* mmlu_it
* mmlu_it-lite
* mmlu_ja
* mmlu_ja-lite
* mmlu_ko
* mmlu_ko-lite
* mmlu_ky
* mmlu_llama_4
* mmlu_lt
* mmlu_mg
* mmlu_ms
* mmlu_my-lite
* mmlu_ne
* mmlu_nl
* mmlu_ny
* mmlu_pl
* mmlu_pro
* mmlu_pro_aa_v2
* mmlu_pro_aa_v3
* mmlu_pro_llama_4
* mmlu_pt
* mmlu_pt-lite
* mmlu_ro
* mmlu_ru
* mmlu_si
* mmlu_sn
* mmlu_so
* mmlu_sr
* mmlu_sv
* mmlu_sw
* mmlu_sw-lite
* mmlu_te
* mmlu_tr
* mmlu_uk
* mmlu_vi
* mmlu_yo
* mmlu_yo-lite
* mmlu_zh-lite
* simpleqa
Run the evaluation of your choice:
nemo-evaluator run_eval \
--eval_type mmlu_pro \
--model_id meta/llama-3.1-70b-instruct \
--model_url https://integrate.api.nvidia.com/v1/chat/completions \
--model_type chat \
--api_key_name MY_API_KEY \
--output_dir /workspace/results
Gather the results:
cat /workspace/results/results.yml
Command-Line Tool
Each package comes pre-installed with a set of command-line tools, designed to simplify the execution of evaluation tasks. Below are the available commands and their usage for the simple_evals:
Commands
1. List Evaluation Types
nemo-evaluator ls
Displays the evaluation types available within the harness.
2. Run an evaluation
The nemo-evaluator run_eval command executes the evaluation process. Below are the flags and their descriptions:
Required flags
--eval_type <string>The type of evaluation to perform--model_id <string>The name or identifier of the model to evaluate.--model_url <url>The API endpoint where the model is accessible.--model_type <string>The type of the model to evaluate, currently either "chat", "completions", or "vlm".--output_dir <directory>The directory to use as the working directory for the evaluation. The results, including the results.yml output file, will be saved here.
Optional flags
--api_key_name <string>The name of the environment variable that stores the Bearer token for the API, if authentication is required.--run_config <path>Specifies the path to a YAML file containing the evaluation definition.
Example
nemo-evaluator run_eval \
--eval_type AIME_2025 \
--model_id my_model \
--model_type chat \
--model_url http://localhost:8000 \
--output_dir ./evaluation_results
If the model API requires authentication, set the API key in an environment variable and reference it using the --api_key_name flag:
export MY_API_KEY="your_api_key_here"
nemo-evaluator run_eval \
--eval_type AIME_2025 \
--model_id my_model \
--model_type chat \
--model_url http://localhost:8000 \
--api_key_name MY_API_KEY \
--output_dir ./evaluation_results
Configuring evaluations via YAML
Evaluations in NVIDIA NeMo Evaluator are configured using YAML files that define the parameters and settings required for the evaluation process. These configuration files follow a standard API which ensures consistency across evaluations.
Example of a YAML config:
config:
type: AIME_2025
params:
parallelism: 50
limit_samples: 20
target:
api_endpoint:
model_id: meta/llama-3.1-8b-instruct
type: chat
url: https://integrate.api.nvidia.com/v1/chat/completions
api_key: NVIDIA_API_KEY
The priority of overrides is as follows:
- command line arguments
- user config (as seen above)
- task defaults (defined per task type)
- framework defaults
--dry_run option allows you to print the final run configuration and command without executing the evaluation.
Example:
nemo-evaluator run_eval \
--eval_type AIME_2025 \
--model_id my_model \
--model_type chat \
--model_url http://localhost:8000 \
--output_dir .evaluation_results \
--dry_run
Output:
Rendered config:
command: '{% if target.api_endpoint.api_key is not none %}export API_KEY=${{target.api_endpoint.api_key}}
&& {% endif %} simple_evals --model {{target.api_endpoint.model_id}} --eval_name
{{config.params.task}} --url {{target.api_endpoint.url}} --temperature {{config.params.temperature}}
--top_p {{config.params.top_p}} --max_tokens {{config.params.max_new_tokens}} --out_dir
{{config.output_dir}} --cache_dir {{config.output_dir}}/cache --num_threads {{config.params.parallelism}}
--max_retries {{config.params.max_retries}} --timeout {{config.params.request_timeout}}
{% if config.params.extra.n_samples is defined %} --num_repeats {{config.params.extra.n_samples}}{%
endif %} {% if config.params.limit_samples is not none %} --first_n {{config.params.limit_samples}}{%
endif %} {% if config.params.extra.add_system_prompt %} --add_system_prompt {%
endif %} {% if config.params.extra.args is defined %} {{ config.params.extra.args
}} {% endif %}'
framework_name: simple_evals
pkg_name: simple_evals
config:
output_dir: .evaluation_results
params:
limit_samples: null
max_new_tokens: 4096
max_retries: 5
parallelism: 10
task: AIME_2025
temperature: 0.0
request_timeout: 60
top_p: 1.0e-05
extra:
add_system_prompt: false
supported_endpoint_types:
- chat
type: AIME_2025
target:
api_endpoint:
api_key: null
model_id: my_model
stream: null
type: chat
url: http://localhost:8000
Rendered command:
simple_evals --model my_model --eval_name AIME_2025 --url http://localhost:8000 --temperature 0.0 --top_p 1e-05 --max_tokens 4096 --out_dir .evaluation_results --cache_dir .evaluation_results/cache --num_threads 10 --max_retries 5 --timeout 60
FAQ
Deploying a model as an endpoint
NVIDIA NeMo Evaluator utilize a client-server communication architecture to interact with the model. As a prerequisite, the model must be deployed as an endpoint with a NIM-compatible API.
Users have the flexibility to deploy their model using their own infrastructure and tooling.
Servers with APIs that conform to the OpenAI/NIM API standard are expected to work seamlessly out of the box.
Providing llm-as-a-judge keys to Math benchmarks
For the gpt judge
export OPENAI_CLIENT_ID=...
export OPENAI_CLIENT_SECRET=...
For the llama 3.3 70b judge (for AA_math_test_500 and AA_AIME_2024)
export JUDGE_API_KEY=...
3rd Party Source Code
Users can download the third party source code through the URL provided in the container's README located in workdir.