-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy patheval_runner_cli.py
More file actions
29 lines (26 loc) · 1.07 KB
/
eval_runner_cli.py
File metadata and controls
29 lines (26 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright (c) 2025-2026, The Isaac Lab Arena Project Developers (https://github.com/isaac-sim/IsaacLab-Arena/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: Apache-2.0
import argparse
def add_eval_runner_arguments(parser: argparse.ArgumentParser) -> None:
"""Add eval runner specific arguments to the parser."""
parser.add_argument(
"--eval_jobs_config",
type=str,
default="isaaclab_arena_environments/eval_jobs_configs/zero_action_jobs_config.json",
help="Path to the eval jobs config file.",
)
parser.add_argument("--video", action="store_true", default=False, help="Record videos for each eval job.")
parser.add_argument(
"--video_dir",
type=str,
default="/eval/videos",
help="Root directory for recorded videos. Each job gets a subdirectory.",
)
parser.add_argument(
"--continue_on_error",
action="store_true",
default=False,
help="Continue evaluation with remaining jobs when a job fails instead of stopping immediately.",
)