NVIDIA
NVIDIA
NVIDIA NeMo Skills
Container
NVIDIA
NVIDIA
NVIDIA NeMo Skills

NVIDIA NeMo Evaluator-compatible container with NeMo Skills support: https://github.com/NVIDIA/NeMo-Skills

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

  1. List the available evaluations:
    $ nemo-evaluator ls
    nemo_skills:
      * ns_aime2024
      * ns_aime2025
      * ns_aime2025_ef
      * ns_gpqa
      * ns_gpqa_ef
      * ns_bfcl_v3
      * ns_livecodebench
      * ns_hle
      * ns_mmlu
      * ns_mmlu_pro
    
  2. Run the evaluation of your choice:
    nemo-evaluator run_eval \
        --eval_type ns_aime2024 \
        --model_id meta/llama-3.1-8b-instruct \
        --model_url https://integrate.api.nvidia.com/v1/chat/completions \
        --model_type chat \
        --api_key_name MY_API_KEY \
        --output_dir /workspace/results
    
  3. 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 ifbench:

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 ns_aime2024 \
    --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 ns_aime2024 \
    --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: ns_aime2024
  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:

  1. command line arguments
  2. user config (as seen above)
  3. task defaults (defined per task type)
  4. 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 ns_aime2024 \
    --model_id my_model \
    --model_type chat \
    --model_url http://localhost:8000 \
    --output_dir ./evaluation_results \
    --dry_run

Output:

Rendered config:

command: cd /nemo_run/code && ns prepare_data {{config.params.task}}  && ns eval --server_type=openai
  --model={{target.api_endpoint.model_id}} --server_address={{target.api_endpoint.url}}
  --benchmarks={{config.params.task}}{% if config.params.extra.num_repeats is not
  none and config.params.extra.num_repeats > 1 %}:{{config.params.extra.num_repeats}}{%
  endif %} --output_dir={{config.output_dir}} {% if config.params.extra.dataset_split
  is not none %}--split={{config.params.extra.dataset_split}}{% endif %} {% if target.api_endpoint.api_key
  is not none %}++server.api_key_env_var={{target.api_endpoint.api_key}}{% endif %}
  ++inference.tokens_to_generate={{config.params.max_new_tokens}} {% if config.params.extra.system_message
  is not none %} ++system_message='{{config.params.extra.system_message}}' {% endif
  %} {% if config.params.limit_samples is not none %}++max_samples={{config.params.limit_samples}}{%
  endif %} {% if config.params.parallelism is not none %}++max_concurrent_requests={{config.params.parallelism}}{%
  endif %} {% if config.params.temperature is not none %}++inference.temperature={{config.params.temperature}}{%
  endif %} {% if config.params.top_p is not none %}++inference.top_p={{config.params.top_p}}{%
  endif %} {% if config.params.extra.args is not none %} {{config.params.extra.args}}
  {% endif %} {% if config.params.extra.judge_support and config.params.extra.judge.url
  is not none %} && mkdir -p {{config.output_dir}}/eval-results-judge && ns generate
  --generation_type=math_judge --model={{config.params.extra.judge.model_id}} --server_type=openai
  --server_address={{config.params.extra.judge.url}} --output_dir={{config.output_dir}}/eval-results-judge/{{config.params.task}}
  {% if config.params.extra.num_repeats is not none and config.params.extra.num_repeats
  > 1 %}--input_dir={{config.output_dir}}/eval-results/{{config.params.task}} --num_random_seeds={{config.params.extra.num_repeats}}{%
  else %}--input_file={{config.output_dir}}/eval-results/{{config.params.task}}/output.jsonl{%
  endif %} {% if config.params.extra.judge.api_key is not none %}++server.api_key_env_var={{config.params.extra.judge.api_key}}{%
  endif %} && ns summarize_results {{config.output_dir}}/eval-results-judge/{{config.params.task}}
  {% endif %}
framework_name: nemo_skills
pkg_name: nemo_skills
config:
  output_dir: ./evaluation_results
  params:
    limit_samples: null
    max_new_tokens: 65536
    max_retries: null
    parallelism: 16
    task: aime24
    temperature: null
    request_timeout: null
    top_p: null
    extra:
      num_repeats: null
      args: null
      system_message: null
      dataset_split: null
      judge_support: true
      judge:
        url: null
        model_id: null
        api_key: null
        random_seed: 1234
  supported_endpoint_types: null
  type: ns_aime2024
target:
  api_endpoint:
    api_key: null
    model_id: my_model
    stream: null
    type: chat
    url: http://localhost:8000
    adapter_config: null


Rendered command:

cd /nemo_run/code && ns prepare_data aime24  && ns eval --server_type=openai --model=my_model --server_address=http://localhost:8000 --benchmarks=aime24 --output_dir=./evaluation_results   ++inference.tokens_to_generate=65536   ++max_concurrent_requests=16

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.

3rd Party Source Code

Users can download the third party source code through the URL provided in the container's README located in workdir.

Publisher
NVIDIA
NVIDIA
Latest Tag25.11
UpdatedDecember 3, 2025 UTC
Compressed Size5.6 GB
Multinode SupportNo
Multi-Arch SupportYes

NVIDIA uses cookies to improve your experience on our web site. We and our third-party partners also use cookies and other tools to collect and record information you provide as well as information about your interactions with our websites for performance improvement, analytics, and to assist in marketing efforts. By clicking "Accept All", you consent to our use of cookies and other tools as described in our Cookie Policy. You can manage your cookie settings by clicking on "Manage Settings." By continuing to use this site or by clicking one of the buttons below, you agree to our Terms of Service (which contains important waivers). Please see our Privacy Policy for more information on our privacy practices.