mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-31 10:51:35 +00:00
* docs(benchmarks): add benchmark integration guide and standardize benchmark docs Add a comprehensive guide for adding new benchmarks to LeRobot, and refactor the existing LIBERO and Meta-World docs to follow the new standardized template. Made-with: Cursor * refactor(envs): move dispatch logic from factory into EnvConfig subclasses Replace hardcoded if/elif chains in factory.py with create_envs() and get_env_processors() methods on EnvConfig. New benchmarks now only need to register a config subclass — no factory.py edits required. Net -23 lines: factory.py shrinks from ~200 to ~70 lines of logic. Made-with: Cursor * docs(benchmarks): clean up adding-benchmarks guide for clarity Rewrite for simpler language, better structure, and easier navigation. Move quick-reference table to the top, fold eval explanation into architecture section, condense the doc template to a bulleted outline. Made-with: Cursor * fix link * fix task count * fix: enable SmolVLA eval on LIBERO with custom camera mappings - Thread camera_name_mapping from LiberoEnv config through to gym envs - Sync features_map with camera_name_mapping in LiberoEnv.__post_init__ - Fix render() to use first available camera instead of hardcoded "image" - Handle non-dict final_info in rollout by falling back to info["is_success"] - Add use_peft legacy field to SmolVLAConfig for checkpoint compat - Add defaults to GR00TN15Config init=False fields for transformers 5.3 Made-with: Cursor * fix: use direct AutoresetMode import for gymnasium compat Made-with: Cursor * fix: handle gymnasium < 1.0 without AutoresetMode Made-with: Cursor * refactor: revert policy changes, keep env-only camera mapping fixes - Revert GR00T N1.5 default_factory/default changes (transformers compat) - Revert SmolVLA use_peft legacy field - Apply ruff formatting fixes - camera_name_mapping stays entirely in env/eval layer (no policy changes) Made-with: Cursor * Update docs/source/env_processor.mdx Co-authored-by: Khalil Meftah <khalil.meftah@huggingface.co> Signed-off-by: Pepijn <138571049+pkooij@users.noreply.github.com> * feat(envs): lazy env init + AsyncVectorEnv as default for n_envs > 1 LiberoEnv and MetaworldEnv previously allocated GPU resources (EGL context, OpenGL framebuffer) in __init__, before AsyncVectorEnv's fork(). Worker processes inherited stale GPU handles, causing EGL_BAD_CONTEXT crashes on first render. Fix: defer OffScreenRenderEnv / MT1 construction to _ensure_env(), called on first reset() or step() inside the worker subprocess. Each worker creates its own clean context after fork(). Also fixes lerobot_eval.py:170 (add_envs_task TODO): replace with env.call("task") which works with both SyncVectorEnv and AsyncVectorEnv. AsyncVectorEnv is now the default for n_envs > 1; auto-downgraded to SyncVectorEnv when n_envs=1 (no benefit, less overhead). Expected speedup: ~15-20x for LIBERO Spatial with batch_size=50. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix: close envs between tasks to prevent worker process accumulation eval_policy_all never closed environments after each task completed, causing AsyncVectorEnv worker processes to accumulate (N_tasks × n_envs). This led to OOM, BrokenPipeError and EOFError on multi-task benchmarks. Also fixes: - AsyncVectorEnv compat in envs/utils.py (use get_attr/call instead of .envs) - Tuple task handling in tokenizer_processor and lerobot_eval - _LazyAsyncVectorEnv for deferred worker spawning in LIBERO Made-with: Cursor * fix(eval): use task_description instead of task for language conditioning env.call("task") returns the LIBERO task name with underscores (e.g. "pick_up_the_black_bowl_...") instead of the natural language description ("pick up the black bowl ..."). The VLM tokenizes these completely differently, causing 0.0 reward across all episodes. Made-with: Cursor * docs: update adding_benchmarks for async env changes - Replace add_envs_task reference with env.call("task_description") - Update use_async_envs default to True - Add note about lazy GPU init for AsyncVectorEnv compatibility Made-with: Cursor * feat(eval): batch_size=auto + faster env loading - batch_size=0 (default) auto-tunes based on CPU cores, capped by n_episodes and 64. Removes the need for users to guess the right value. The old batch_size > n_episodes error is replaced by silently clamping to n_episodes. - _LazyAsyncVectorEnv accepts pre-computed spaces so only one temp env is created per suite (not per task). For libero_spatial (10 tasks) this avoids 9 redundant LiberoEnv instantiations during env setup. Made-with: Cursor * docs: add evaluation guide and update benchmarks doc - New docs/source/evaluation.mdx covering lerobot-eval usage, batch_size auto-tuning, AsyncVectorEnv performance, tuning tips, output format, multi-task evaluation, and programmatic usage. - Add evaluation page to _toctree.yml under Benchmarks section. - Update adding_benchmarks.mdx to reference batch_size auto default and link to the evaluation guide. Made-with: Cursor * docs(evaluation): remove benchmark table, rename section header Made-with: Cursor * perf(eval): shared memory, observation passthrough, task prefetch - AsyncVectorEnv now uses shared_memory=True for zero-copy observation transfer - LiberoEnvConfig.gym_kwargs passes observation_height/width to the env - eval_policy_all prefetches next task's workers while current task runs Made-with: Cursor * style: ruff format Made-with: Cursor * chore: revert env_processor.mdx changes (not part of this PR) Made-with: Cursor * ci(benchmarks): add isolated integration tests for libero and metaworld Each benchmark gets its own Docker image (lerobot[libero] / lerobot[metaworld] only) so incompatible dep trees cannot collide. A 1-episode smoke eval runs per benchmark on GPU runners. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * ci(benchmarks): pin action hashes and use uv sync --locked Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * ci(benchmarks): trigger only on envs/ or lerobot_eval.py changes Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): set LIBERO_DATA_FOLDER to bypass interactive stdin prompt libero/__init__.py calls input() to ask about a custom dataset path, which raises EOFError when stdin is closed inside Docker. Setting LIBERO_DATA_FOLDER skips the prompt entirely. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(benchmarks): add CI smoke test step to adding_benchmarks guide Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): pre-create libero config in Dockerfile to bypass stdin prompt libero/__init__.py calls input() when ~/.libero/config.yaml is missing. We write the config at image build time (without importing libero) so the prompt never fires at runtime. Also trigger CI on pyproject.toml changes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): use shell to create libero config instead of multiline python -c The multiline RUN python -c "..." was being parsed as Dockerfile instructions. Use printf to write ~/.libero/config.yaml directly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): point libero config to bundled package init_files The config was pointing to /tmp/libero_init which doesn't exist. Use importlib.util.find_spec to locate the hf-libero package directory and write paths to the actual bundled bddl_files/init_files/assets. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(ci): add smolvla extra to benchmark Dockerfiles num2words (required by SmolVLM processor) is declared in lerobot[smolvla], not lerobot[libero/metaworld]. Install both extras together. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(eval): render_frame covers _LazyAsyncVectorEnv isinstance(env, AsyncVectorEnv) silently skipped _LazyAsyncVectorEnv, causing video rendering to produce no frames on the default async path. Switch to hasattr(env, "call") so any async-compatible env (including _LazyAsyncVectorEnv) hits the call("render") branch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * refactor(envs): remove unused _get_sub_env_attr helper _get_sub_env_attr was defined but never called anywhere in the codebase. _sub_env_has_attr (its sibling) is kept — it is actively used in utils.py. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: apply prettier formatting to docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(env_processor): remove deprecated add_envs_task from pipeline example add_envs_task is replaced by env.call("task_description") in this PR. Remove it from the pipeline walkthrough and renumber the steps (8→7). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * refactor(envs): remove __del__ from _LazyAsyncVectorEnv __del__ is unreliable as a cleanup mechanism. close() is already called explicitly in the eval loop's finally block, so the finalizer is redundant. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(eval): prefetch next task's workers after close to avoid GPU memory overlap Previously, next task's AsyncVectorEnv workers were spawned while the current task was still running, causing both tasks' GPU contexts to coexist. Moving the prefetch start into the finally block (after env.close()) ensures workers for task N+1 only spin up once task N has released GPU memory. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * refactor(envs): move _LazyAsyncVectorEnv to utils and apply to metaworld _LazyAsyncVectorEnv lived in libero.py but metaworld had the same OOM problem: all tasks' AsyncVectorEnv workers were spawned eagerly, wasting GPU memory for tasks not yet running. Move the class to envs/utils.py so both environments share it, then apply the same is_async + lazy wrapping pattern in create_metaworld_envs. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: remove out-of-scope benchmark/CI/docs files from PR Benchmark CI workflow, Dockerfiles, benchmark docs, evaluation smoke-test doc, and dispatch tests belong in a separate PR. Scope this PR to the async env init changes only. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * chore: restore adding_benchmarks + test_dispatch, drop env_processor changes - Restore docs/source/adding_benchmarks.mdx (belongs in this PR) - Restore tests/envs/test_dispatch.py (belongs in this PR) - Revert docs/source/env_processor.mdx to main (out of scope for this PR) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs(adding_benchmarks): remove CI smoke test step (coming in separate PR) Step 7 (Dockerfile + benchmark_tests.yml CI job) and its table rows are out of scope for this PR. The CI infrastructure will be added on top in a follow-up PR. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * refactor(envs): remove unused add_envs_task Replaced by env.call("task_description") in lerobot_eval.py. No callers remain in the codebase. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * style: fix prettier formatting in env_processor.mdx Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(eval): catch AttributeError and NotImplementedError explicitly for task description Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(envs): use forkserver context and close envs in test to prevent deadlock AsyncVectorEnv with default fork context leaks worker processes between test_policy parametrized cases; subsequent env creation deadlocks because new forked workers inherit stale pipe FDs from previous test's leaked workers. - configs.py: pass context="forkserver" to AsyncVectorEnv (matches _LazyAsyncVectorEnv) - test_policies.py: call close_envs(envs) at end of test_policy to clean up workers Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix(envs): default use_async_envs=False in create_envs and make_env Tests that call make_env(n_envs=2) without passing use_async_envs were getting AsyncVectorEnv, whose forked workers can't resolve gym namespaces registered at runtime. Default to False (sync) so existing tests pass. lerobot_eval.py explicitly passes cfg.eval.use_async_envs, so the CLI async behaviour (controlled by EvalConfig.use_async_envs) is unchanged. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Signed-off-by: Pepijn <138571049+pkooij@users.noreply.github.com> Co-authored-by: Khalil Meftah <khalil.meftah@huggingface.co> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
842 lines
33 KiB
Python
842 lines
33 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""Evaluate a policy on an environment by running rollouts and computing metrics.
|
|
|
|
Usage examples:
|
|
|
|
You want to evaluate a model from the hub (eg: https://huggingface.co/lerobot/diffusion_pusht)
|
|
for 10 episodes.
|
|
|
|
```
|
|
lerobot-eval \
|
|
--policy.path=lerobot/diffusion_pusht \
|
|
--env.type=pusht \
|
|
--eval.batch_size=10 \
|
|
--eval.n_episodes=10 \
|
|
--policy.use_amp=false \
|
|
--policy.device=cuda
|
|
```
|
|
|
|
OR, you want to evaluate a model checkpoint from the LeRobot training script for 10 episodes.
|
|
```
|
|
lerobot-eval \
|
|
--policy.path=outputs/train/diffusion_pusht/checkpoints/005000/pretrained_model \
|
|
--env.type=pusht \
|
|
--eval.batch_size=10 \
|
|
--eval.n_episodes=10 \
|
|
--policy.use_amp=false \
|
|
--policy.device=cuda
|
|
```
|
|
|
|
Note that in both examples, the repo/folder should contain at least `config.json` and `model.safetensors` files.
|
|
|
|
You can learn about the CLI options for this script in the `EvalPipelineConfig` in lerobot/configs/eval.py
|
|
"""
|
|
|
|
import concurrent.futures as cf
|
|
import json
|
|
import logging
|
|
import threading
|
|
import time
|
|
from collections import defaultdict
|
|
from collections.abc import Callable
|
|
from contextlib import nullcontext
|
|
from copy import deepcopy
|
|
from dataclasses import asdict
|
|
from functools import partial
|
|
from pathlib import Path
|
|
from pprint import pformat
|
|
from typing import Any, TypedDict
|
|
|
|
import einops
|
|
import gymnasium as gym
|
|
import numpy as np
|
|
import torch
|
|
from termcolor import colored
|
|
from torch import Tensor, nn
|
|
from tqdm import trange
|
|
|
|
from lerobot.configs import parser
|
|
from lerobot.configs.eval import EvalPipelineConfig
|
|
from lerobot.envs.factory import make_env, make_env_pre_post_processors
|
|
from lerobot.envs.utils import (
|
|
check_env_attributes_and_types,
|
|
close_envs,
|
|
preprocess_observation,
|
|
)
|
|
from lerobot.policies.factory import make_policy, make_pre_post_processors
|
|
from lerobot.policies.pretrained import PreTrainedPolicy
|
|
from lerobot.processor import PolicyProcessorPipeline
|
|
from lerobot.types import PolicyAction
|
|
from lerobot.utils.constants import ACTION, DONE, OBS_STR, REWARD
|
|
from lerobot.utils.device_utils import get_safe_torch_device
|
|
from lerobot.utils.import_utils import register_third_party_plugins
|
|
from lerobot.utils.io_utils import write_video
|
|
from lerobot.utils.random_utils import set_seed
|
|
from lerobot.utils.utils import (
|
|
init_logging,
|
|
inside_slurm,
|
|
)
|
|
|
|
|
|
def rollout(
|
|
env: gym.vector.VectorEnv,
|
|
policy: PreTrainedPolicy,
|
|
env_preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
env_postprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
postprocessor: PolicyProcessorPipeline[PolicyAction, PolicyAction],
|
|
seeds: list[int] | None = None,
|
|
return_observations: bool = False,
|
|
render_callback: Callable[[gym.vector.VectorEnv], None] | None = None,
|
|
) -> dict:
|
|
"""Run a batched policy rollout once through a batch of environments.
|
|
|
|
Note that all environments in the batch are run until the last environment is done. This means some
|
|
data will probably need to be discarded (for environments that aren't the first one to be done).
|
|
|
|
The return dictionary contains:
|
|
(optional) "observation": A dictionary of (batch, sequence + 1, *) tensors mapped to observation
|
|
keys. NOTE that this has an extra sequence element relative to the other keys in the
|
|
dictionary. This is because an extra observation is included for after the environment is
|
|
terminated or truncated.
|
|
"action": A (batch, sequence, action_dim) tensor of actions applied based on the observations (not
|
|
including the last observations).
|
|
"reward": A (batch, sequence) tensor of rewards received for applying the actions.
|
|
"success": A (batch, sequence) tensor of success conditions (the only time this can be True is upon
|
|
environment termination/truncation).
|
|
"done": A (batch, sequence) tensor of **cumulative** done conditions. For any given batch element,
|
|
the first True is followed by True's all the way till the end. This can be used for masking
|
|
extraneous elements from the sequences above.
|
|
|
|
Args:
|
|
env: The batch of environments.
|
|
policy: The policy. Must be a PyTorch nn module.
|
|
seeds: The environments are seeded once at the start of the rollout. If provided, this argument
|
|
specifies the seeds for each of the environments.
|
|
return_observations: Whether to include all observations in the returned rollout data. Observations
|
|
are returned optionally because they typically take more memory to cache. Defaults to False.
|
|
render_callback: Optional rendering callback to be used after the environments are reset, and after
|
|
every step.
|
|
Returns:
|
|
The dictionary described above.
|
|
"""
|
|
assert isinstance(policy, nn.Module), "Policy must be a PyTorch nn module."
|
|
|
|
# Reset the policy and environments.
|
|
policy.reset()
|
|
observation, info = env.reset(seed=seeds)
|
|
if render_callback is not None:
|
|
render_callback(env)
|
|
|
|
all_observations = []
|
|
all_actions = []
|
|
all_rewards = []
|
|
all_successes = []
|
|
all_dones = []
|
|
|
|
step = 0
|
|
# Keep track of which environments are done.
|
|
done = np.array([False] * env.num_envs)
|
|
max_steps = env.call("_max_episode_steps")[0]
|
|
progbar = trange(
|
|
max_steps,
|
|
desc=f"Running rollout with at most {max_steps} steps",
|
|
disable=inside_slurm(), # we dont want progress bar when we use slurm, since it clutters the logs
|
|
leave=False,
|
|
)
|
|
check_env_attributes_and_types(env)
|
|
while not np.all(done) and step < max_steps:
|
|
# Numpy array to tensor and changing dictionary keys to LeRobot policy format.
|
|
observation = preprocess_observation(observation)
|
|
if return_observations:
|
|
all_observations.append(deepcopy(observation))
|
|
|
|
# Infer "task" from sub-environments (prefer natural language description).
|
|
# env.call() works with both SyncVectorEnv and AsyncVectorEnv.
|
|
try:
|
|
observation["task"] = list(env.call("task_description"))
|
|
except (AttributeError, NotImplementedError):
|
|
try:
|
|
observation["task"] = list(env.call("task"))
|
|
except (AttributeError, NotImplementedError):
|
|
observation["task"] = [""] * env.num_envs
|
|
|
|
# Apply environment-specific preprocessing (e.g., LiberoProcessorStep for LIBERO)
|
|
observation = env_preprocessor(observation)
|
|
|
|
observation = preprocessor(observation)
|
|
with torch.inference_mode():
|
|
action = policy.select_action(observation)
|
|
action = postprocessor(action)
|
|
|
|
action_transition = {ACTION: action}
|
|
action_transition = env_postprocessor(action_transition)
|
|
action = action_transition[ACTION]
|
|
|
|
# Convert to CPU / numpy.
|
|
action_numpy: np.ndarray = action.to("cpu").numpy()
|
|
assert action_numpy.ndim == 2, "Action dimensions should be (batch, action_dim)"
|
|
|
|
# Apply the next action.
|
|
observation, reward, terminated, truncated, info = env.step(action_numpy)
|
|
if render_callback is not None:
|
|
render_callback(env)
|
|
|
|
# VectorEnv stores is_success in `info["final_info"][env_index]["is_success"]`. "final_info" isn't
|
|
# available if none of the envs finished.
|
|
if "final_info" in info:
|
|
final_info = info["final_info"]
|
|
if not isinstance(final_info, dict):
|
|
raise RuntimeError(
|
|
"Unsupported `final_info` format: expected dict (Gymnasium >= 1.0). "
|
|
"You're likely using an older version of gymnasium (< 1.0). Please upgrade."
|
|
)
|
|
successes = final_info["is_success"].tolist()
|
|
elif "is_success" in info:
|
|
is_success = info["is_success"]
|
|
successes = (
|
|
is_success.tolist() if hasattr(is_success, "tolist") else [bool(is_success)] * env.num_envs
|
|
)
|
|
else:
|
|
successes = [False] * env.num_envs
|
|
|
|
# Keep track of which environments are done so far.
|
|
# Mark the episode as done if we reach the maximum step limit.
|
|
# This ensures that the rollout always terminates cleanly at `max_steps`,
|
|
# and allows logging/saving (e.g., videos) to be triggered consistently.
|
|
done = terminated | truncated | done
|
|
if step + 1 == max_steps:
|
|
done = np.ones_like(done, dtype=bool)
|
|
|
|
all_actions.append(torch.from_numpy(action_numpy))
|
|
all_rewards.append(torch.from_numpy(reward))
|
|
all_dones.append(torch.from_numpy(done))
|
|
all_successes.append(torch.tensor(successes))
|
|
|
|
step += 1
|
|
running_success_rate = (
|
|
einops.reduce(torch.stack(all_successes, dim=1), "b n -> b", "any").numpy().mean()
|
|
)
|
|
progbar.set_postfix({"running_success_rate": f"{running_success_rate.item() * 100:.1f}%"})
|
|
progbar.update()
|
|
|
|
# Track the final observation.
|
|
if return_observations:
|
|
observation = preprocess_observation(observation)
|
|
all_observations.append(deepcopy(observation))
|
|
|
|
# Stack the sequence along the first dimension so that we have (batch, sequence, *) tensors.
|
|
ret = {
|
|
ACTION: torch.stack(all_actions, dim=1),
|
|
"reward": torch.stack(all_rewards, dim=1),
|
|
"success": torch.stack(all_successes, dim=1),
|
|
"done": torch.stack(all_dones, dim=1),
|
|
}
|
|
if return_observations:
|
|
stacked_observations = {}
|
|
for key in all_observations[0]:
|
|
stacked_observations[key] = torch.stack([obs[key] for obs in all_observations], dim=1)
|
|
ret[OBS_STR] = stacked_observations
|
|
|
|
if hasattr(policy, "use_original_modules"):
|
|
policy.use_original_modules()
|
|
|
|
return ret
|
|
|
|
|
|
def eval_policy(
|
|
env: gym.vector.VectorEnv,
|
|
policy: PreTrainedPolicy,
|
|
env_preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
env_postprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
postprocessor: PolicyProcessorPipeline[PolicyAction, PolicyAction],
|
|
n_episodes: int,
|
|
max_episodes_rendered: int = 0,
|
|
videos_dir: Path | None = None,
|
|
return_episode_data: bool = False,
|
|
start_seed: int | None = None,
|
|
) -> dict:
|
|
"""
|
|
Args:
|
|
env: The batch of environments.
|
|
policy: The policy.
|
|
n_episodes: The number of episodes to evaluate.
|
|
max_episodes_rendered: Maximum number of episodes to render into videos.
|
|
videos_dir: Where to save rendered videos.
|
|
return_episode_data: Whether to return episode data for online training. Incorporates the data into
|
|
the "episodes" key of the returned dictionary.
|
|
start_seed: The first seed to use for the first individual rollout. For all subsequent rollouts the
|
|
seed is incremented by 1. If not provided, the environments are not manually seeded.
|
|
Returns:
|
|
Dictionary with metrics and data regarding the rollouts.
|
|
"""
|
|
if max_episodes_rendered > 0 and not videos_dir:
|
|
raise ValueError("If max_episodes_rendered > 0, videos_dir must be provided.")
|
|
|
|
if not isinstance(policy, PreTrainedPolicy):
|
|
exc = ValueError(
|
|
f"Policy of type 'PreTrainedPolicy' is expected, but type '{type(policy)}' was provided."
|
|
)
|
|
try:
|
|
from peft import PeftModel
|
|
|
|
if not isinstance(policy, PeftModel):
|
|
raise exc
|
|
except ImportError:
|
|
raise exc from None
|
|
|
|
start = time.time()
|
|
policy.eval()
|
|
|
|
# Determine how many batched rollouts we need to get n_episodes. Note that if n_episodes is not evenly
|
|
# divisible by env.num_envs we end up discarding some data in the last batch.
|
|
n_batches = n_episodes // env.num_envs + int((n_episodes % env.num_envs) != 0)
|
|
|
|
# Keep track of some metrics.
|
|
sum_rewards = []
|
|
max_rewards = []
|
|
all_successes = []
|
|
all_seeds = []
|
|
threads = [] # for video saving threads
|
|
n_episodes_rendered = 0 # for saving the correct number of videos
|
|
|
|
# Callback for visualization.
|
|
def render_frame(env: gym.vector.VectorEnv):
|
|
# noqa: B023
|
|
if n_episodes_rendered >= max_episodes_rendered:
|
|
return
|
|
n_to_render_now = min(max_episodes_rendered - n_episodes_rendered, env.num_envs)
|
|
if isinstance(env, gym.vector.SyncVectorEnv):
|
|
ep_frames.append(np.stack([env.envs[i].render() for i in range(n_to_render_now)])) # noqa: B023
|
|
elif hasattr(env, "call"):
|
|
# Here we must render all frames and discard any we don't need.
|
|
# Covers AsyncVectorEnv and _LazyAsyncVectorEnv (which wraps one).
|
|
ep_frames.append(np.stack(env.call("render")[:n_to_render_now]))
|
|
|
|
if max_episodes_rendered > 0:
|
|
video_paths: list[str] = []
|
|
|
|
if return_episode_data:
|
|
episode_data: dict | None = None
|
|
|
|
# we dont want progress bar when we use slurm, since it clutters the logs
|
|
progbar = trange(n_batches, desc="Stepping through eval batches", disable=inside_slurm())
|
|
for batch_ix in progbar:
|
|
# Cache frames for rendering videos. Each item will be (b, h, w, c), and the list indexes the rollout
|
|
# step.
|
|
if max_episodes_rendered > 0:
|
|
ep_frames: list[np.ndarray] = []
|
|
|
|
if start_seed is None:
|
|
seeds = None
|
|
else:
|
|
seeds = range(
|
|
start_seed + (batch_ix * env.num_envs), start_seed + ((batch_ix + 1) * env.num_envs)
|
|
)
|
|
rollout_data = rollout(
|
|
env=env,
|
|
policy=policy,
|
|
env_preprocessor=env_preprocessor,
|
|
env_postprocessor=env_postprocessor,
|
|
preprocessor=preprocessor,
|
|
postprocessor=postprocessor,
|
|
seeds=list(seeds) if seeds else None,
|
|
return_observations=return_episode_data,
|
|
render_callback=render_frame if max_episodes_rendered > 0 else None,
|
|
)
|
|
|
|
# Figure out where in each rollout sequence the first done condition was encountered (results after
|
|
# this won't be included).
|
|
n_steps = rollout_data["done"].shape[1]
|
|
# Note: this relies on a property of argmax: that it returns the first occurrence as a tiebreaker.
|
|
done_indices = torch.argmax(rollout_data["done"].to(int), dim=1)
|
|
|
|
# Make a mask with shape (batch, n_steps) to mask out rollout data after the first done
|
|
# (batch-element-wise). Note the `done_indices + 1` to make sure to keep the data from the done step.
|
|
mask = (torch.arange(n_steps) <= einops.repeat(done_indices + 1, "b -> b s", s=n_steps)).int()
|
|
# Extend metrics.
|
|
batch_sum_rewards = einops.reduce((rollout_data["reward"] * mask), "b n -> b", "sum")
|
|
sum_rewards.extend(batch_sum_rewards.tolist())
|
|
batch_max_rewards = einops.reduce((rollout_data["reward"] * mask), "b n -> b", "max")
|
|
max_rewards.extend(batch_max_rewards.tolist())
|
|
batch_successes = einops.reduce((rollout_data["success"] * mask), "b n -> b", "any")
|
|
all_successes.extend(batch_successes.tolist())
|
|
if seeds:
|
|
all_seeds.extend(seeds)
|
|
else:
|
|
all_seeds.append(None)
|
|
|
|
# FIXME: episode_data is either None or it doesn't exist
|
|
if return_episode_data:
|
|
this_episode_data = _compile_episode_data(
|
|
rollout_data,
|
|
done_indices,
|
|
start_episode_index=batch_ix * env.num_envs,
|
|
start_data_index=(0 if episode_data is None else (episode_data["index"][-1].item() + 1)),
|
|
fps=env.unwrapped.metadata["render_fps"],
|
|
)
|
|
if episode_data is None:
|
|
episode_data = this_episode_data
|
|
else:
|
|
# Some sanity checks to make sure we are correctly compiling the data.
|
|
assert episode_data["episode_index"][-1] + 1 == this_episode_data["episode_index"][0]
|
|
assert episode_data["index"][-1] + 1 == this_episode_data["index"][0]
|
|
# Concatenate the episode data.
|
|
episode_data = {k: torch.cat([episode_data[k], this_episode_data[k]]) for k in episode_data}
|
|
|
|
# Maybe render video for visualization.
|
|
if max_episodes_rendered > 0 and len(ep_frames) > 0:
|
|
batch_stacked_frames = np.stack(ep_frames, axis=1) # (b, t, *)
|
|
for stacked_frames, done_index in zip(
|
|
batch_stacked_frames, done_indices.flatten().tolist(), strict=False
|
|
):
|
|
if n_episodes_rendered >= max_episodes_rendered:
|
|
break
|
|
|
|
videos_dir.mkdir(parents=True, exist_ok=True)
|
|
video_path = videos_dir / f"eval_episode_{n_episodes_rendered}.mp4"
|
|
video_paths.append(str(video_path))
|
|
thread = threading.Thread(
|
|
target=write_video,
|
|
args=(
|
|
str(video_path),
|
|
stacked_frames[: done_index + 1], # + 1 to capture the last observation
|
|
env.unwrapped.metadata["render_fps"],
|
|
),
|
|
)
|
|
thread.start()
|
|
threads.append(thread)
|
|
n_episodes_rendered += 1
|
|
|
|
progbar.set_postfix(
|
|
{"running_success_rate": f"{np.mean(all_successes[:n_episodes]).item() * 100:.1f}%"}
|
|
)
|
|
|
|
# Wait till all video rendering threads are done.
|
|
for thread in threads:
|
|
thread.join()
|
|
|
|
# Compile eval info.
|
|
info = {
|
|
"per_episode": [
|
|
{
|
|
"episode_ix": i,
|
|
"sum_reward": sum_reward,
|
|
"max_reward": max_reward,
|
|
"success": success,
|
|
"seed": seed,
|
|
}
|
|
for i, (sum_reward, max_reward, success, seed) in enumerate(
|
|
zip(
|
|
sum_rewards[:n_episodes],
|
|
max_rewards[:n_episodes],
|
|
all_successes[:n_episodes],
|
|
all_seeds[:n_episodes],
|
|
strict=True,
|
|
)
|
|
)
|
|
],
|
|
"aggregated": {
|
|
"avg_sum_reward": float(np.nanmean(sum_rewards[:n_episodes])),
|
|
"avg_max_reward": float(np.nanmean(max_rewards[:n_episodes])),
|
|
"pc_success": float(np.nanmean(all_successes[:n_episodes]) * 100),
|
|
"eval_s": time.time() - start,
|
|
"eval_ep_s": (time.time() - start) / n_episodes,
|
|
},
|
|
}
|
|
|
|
if return_episode_data:
|
|
info["episodes"] = episode_data
|
|
|
|
if max_episodes_rendered > 0:
|
|
info["video_paths"] = video_paths
|
|
|
|
return info
|
|
|
|
|
|
def _compile_episode_data(
|
|
rollout_data: dict, done_indices: Tensor, start_episode_index: int, start_data_index: int, fps: float
|
|
) -> dict:
|
|
"""Convenience function for `eval_policy(return_episode_data=True)`
|
|
|
|
Compiles all the rollout data into a Hugging Face dataset.
|
|
|
|
Similar logic is implemented when datasets are pushed to hub (see: `push_to_hub`).
|
|
"""
|
|
ep_dicts = []
|
|
total_frames = 0
|
|
for ep_ix in range(rollout_data[ACTION].shape[0]):
|
|
# + 2 to include the first done frame and the last observation frame.
|
|
num_frames = done_indices[ep_ix].item() + 2
|
|
total_frames += num_frames
|
|
|
|
# Here we do `num_frames - 1` as we don't want to include the last observation frame just yet.
|
|
ep_dict = {
|
|
ACTION: rollout_data[ACTION][ep_ix, : num_frames - 1],
|
|
"episode_index": torch.tensor([start_episode_index + ep_ix] * (num_frames - 1)),
|
|
"frame_index": torch.arange(0, num_frames - 1, 1),
|
|
"timestamp": torch.arange(0, num_frames - 1, 1) / fps,
|
|
DONE: rollout_data["done"][ep_ix, : num_frames - 1],
|
|
"next.success": rollout_data["success"][ep_ix, : num_frames - 1],
|
|
REWARD: rollout_data["reward"][ep_ix, : num_frames - 1].type(torch.float32),
|
|
}
|
|
|
|
# For the last observation frame, all other keys will just be copy padded.
|
|
for k in ep_dict:
|
|
ep_dict[k] = torch.cat([ep_dict[k], ep_dict[k][-1:]])
|
|
|
|
for key in rollout_data[OBS_STR]:
|
|
ep_dict[key] = rollout_data[OBS_STR][key][ep_ix, :num_frames]
|
|
|
|
ep_dicts.append(ep_dict)
|
|
|
|
data_dict = {}
|
|
for key in ep_dicts[0]:
|
|
data_dict[key] = torch.cat([x[key] for x in ep_dicts])
|
|
|
|
data_dict["index"] = torch.arange(start_data_index, start_data_index + total_frames, 1)
|
|
|
|
return data_dict
|
|
|
|
|
|
@parser.wrap()
|
|
def eval_main(cfg: EvalPipelineConfig):
|
|
logging.info(pformat(asdict(cfg)))
|
|
|
|
# Check device is available
|
|
device = get_safe_torch_device(cfg.policy.device, log=True)
|
|
|
|
torch.backends.cudnn.benchmark = True
|
|
torch.backends.cuda.matmul.allow_tf32 = True
|
|
set_seed(cfg.seed)
|
|
|
|
logging.info(colored("Output dir:", "yellow", attrs=["bold"]) + f" {cfg.output_dir}")
|
|
|
|
logging.info(f"Making environment (batch_size={cfg.eval.batch_size}, async={cfg.eval.use_async_envs}).")
|
|
envs = make_env(
|
|
cfg.env,
|
|
n_envs=cfg.eval.batch_size,
|
|
use_async_envs=cfg.eval.use_async_envs,
|
|
trust_remote_code=cfg.trust_remote_code,
|
|
)
|
|
|
|
logging.info("Making policy.")
|
|
|
|
policy = make_policy(
|
|
cfg=cfg.policy,
|
|
env_cfg=cfg.env,
|
|
rename_map=cfg.rename_map,
|
|
)
|
|
|
|
policy.eval()
|
|
|
|
# The inference device is automatically set to match the detected hardware, overriding any previous device settings from training to ensure compatibility.
|
|
preprocessor_overrides = {
|
|
"device_processor": {"device": str(policy.config.device)},
|
|
"rename_observations_processor": {"rename_map": cfg.rename_map},
|
|
}
|
|
|
|
preprocessor, postprocessor = make_pre_post_processors(
|
|
policy_cfg=cfg.policy,
|
|
pretrained_path=cfg.policy.pretrained_path,
|
|
preprocessor_overrides=preprocessor_overrides,
|
|
)
|
|
|
|
# Create environment-specific preprocessor and postprocessor (e.g., for LIBERO environments)
|
|
env_preprocessor, env_postprocessor = make_env_pre_post_processors(env_cfg=cfg.env, policy_cfg=cfg.policy)
|
|
|
|
with torch.no_grad(), torch.autocast(device_type=device.type) if cfg.policy.use_amp else nullcontext():
|
|
info = eval_policy_all(
|
|
envs=envs,
|
|
policy=policy,
|
|
env_preprocessor=env_preprocessor,
|
|
env_postprocessor=env_postprocessor,
|
|
preprocessor=preprocessor,
|
|
postprocessor=postprocessor,
|
|
n_episodes=cfg.eval.n_episodes,
|
|
max_episodes_rendered=10,
|
|
videos_dir=Path(cfg.output_dir) / "videos",
|
|
start_seed=cfg.seed,
|
|
max_parallel_tasks=cfg.env.max_parallel_tasks,
|
|
)
|
|
print("Overall Aggregated Metrics:")
|
|
print(info["overall"])
|
|
|
|
# Print per-suite stats
|
|
for task_group, task_group_info in info.items():
|
|
print(f"\nAggregated Metrics for {task_group}:")
|
|
print(task_group_info)
|
|
# Close all vec envs
|
|
close_envs(envs)
|
|
|
|
# Save info
|
|
with open(Path(cfg.output_dir) / "eval_info.json", "w") as f:
|
|
json.dump(info, f, indent=2)
|
|
|
|
logging.info("End of eval")
|
|
|
|
|
|
# ---- typed payload returned by one task eval ----
|
|
class TaskMetrics(TypedDict):
|
|
sum_rewards: list[float]
|
|
max_rewards: list[float]
|
|
successes: list[bool]
|
|
video_paths: list[str]
|
|
|
|
|
|
ACC_KEYS = ("sum_rewards", "max_rewards", "successes", "video_paths")
|
|
|
|
|
|
def eval_one(
|
|
env: gym.vector.VectorEnv,
|
|
*,
|
|
policy: PreTrainedPolicy,
|
|
env_preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
env_postprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
postprocessor: PolicyProcessorPipeline[PolicyAction, PolicyAction],
|
|
n_episodes: int,
|
|
max_episodes_rendered: int,
|
|
videos_dir: Path | None,
|
|
return_episode_data: bool,
|
|
start_seed: int | None,
|
|
) -> TaskMetrics:
|
|
"""Evaluates one task_id of one suite using the provided vec env."""
|
|
|
|
task_videos_dir = videos_dir
|
|
|
|
task_result = eval_policy(
|
|
env=env,
|
|
policy=policy,
|
|
env_preprocessor=env_preprocessor,
|
|
env_postprocessor=env_postprocessor,
|
|
preprocessor=preprocessor,
|
|
postprocessor=postprocessor,
|
|
n_episodes=n_episodes,
|
|
max_episodes_rendered=max_episodes_rendered,
|
|
videos_dir=task_videos_dir,
|
|
return_episode_data=return_episode_data,
|
|
start_seed=start_seed,
|
|
)
|
|
|
|
per_episode = task_result["per_episode"]
|
|
return TaskMetrics(
|
|
sum_rewards=[ep["sum_reward"] for ep in per_episode],
|
|
max_rewards=[ep["max_reward"] for ep in per_episode],
|
|
successes=[ep["success"] for ep in per_episode],
|
|
video_paths=task_result.get("video_paths", []),
|
|
)
|
|
|
|
|
|
def run_one(
|
|
task_group: str,
|
|
task_id: int,
|
|
env,
|
|
*,
|
|
policy,
|
|
env_preprocessor,
|
|
env_postprocessor,
|
|
preprocessor,
|
|
postprocessor,
|
|
n_episodes: int,
|
|
max_episodes_rendered: int,
|
|
videos_dir: Path | None,
|
|
return_episode_data: bool,
|
|
start_seed: int | None,
|
|
):
|
|
"""
|
|
Run eval_one for a single (task_group, task_id, env).
|
|
Returns (task_group, task_id, task_metrics_dict).
|
|
This function is intentionally module-level to make it easy to test.
|
|
"""
|
|
task_videos_dir = None
|
|
if videos_dir is not None:
|
|
task_videos_dir = videos_dir / f"{task_group}_{task_id}"
|
|
task_videos_dir.mkdir(parents=True, exist_ok=True)
|
|
|
|
# Call the existing eval_one (assumed to return TaskMetrics-like dict)
|
|
metrics = eval_one(
|
|
env,
|
|
policy=policy,
|
|
env_preprocessor=env_preprocessor,
|
|
env_postprocessor=env_postprocessor,
|
|
preprocessor=preprocessor,
|
|
postprocessor=postprocessor,
|
|
n_episodes=n_episodes,
|
|
max_episodes_rendered=max_episodes_rendered,
|
|
videos_dir=task_videos_dir,
|
|
return_episode_data=return_episode_data,
|
|
start_seed=start_seed,
|
|
)
|
|
# ensure we always provide video_paths key to simplify accumulation
|
|
if max_episodes_rendered > 0:
|
|
metrics.setdefault("video_paths", [])
|
|
return task_group, task_id, metrics
|
|
|
|
|
|
def eval_policy_all(
|
|
envs: dict[str, dict[int, gym.vector.VectorEnv]],
|
|
policy,
|
|
env_preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
env_postprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
preprocessor: PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
postprocessor: PolicyProcessorPipeline[PolicyAction, PolicyAction],
|
|
n_episodes: int,
|
|
*,
|
|
max_episodes_rendered: int = 0,
|
|
videos_dir: Path | None = None,
|
|
return_episode_data: bool = False,
|
|
start_seed: int | None = None,
|
|
max_parallel_tasks: int = 1,
|
|
) -> dict:
|
|
"""
|
|
Evaluate a nested `envs` dict: {task_group: {task_id: vec_env}}.
|
|
This implementation flattens tasks, runs them sequentially or via ThreadPoolExecutor,
|
|
accumulates per-group and overall statistics, and returns the same aggregate metrics
|
|
schema as the single-env evaluator (avg_sum_reward / avg_max_reward / pc_success / timings)
|
|
plus per-task infos.
|
|
"""
|
|
start_t = time.time()
|
|
|
|
# Flatten envs into list of (task_group, task_id, env)
|
|
tasks = [(tg, tid, vec) for tg, group in envs.items() for tid, vec in group.items()]
|
|
|
|
# accumulators: track metrics at both per-group level and across all groups
|
|
group_acc: dict[str, dict[str, list]] = defaultdict(lambda: {k: [] for k in ACC_KEYS})
|
|
overall: dict[str, list] = {k: [] for k in ACC_KEYS}
|
|
per_task_infos: list[dict] = []
|
|
|
|
# small inline helper to accumulate one task's metrics into accumulators
|
|
def _accumulate_to(group: str, metrics: dict):
|
|
# metrics expected to contain 'sum_rewards', 'max_rewards', 'successes', optionally 'video_paths'
|
|
# but eval_one may store per-episode lists; we assume metrics uses scalars averaged per task as before.
|
|
# To be robust, accept scalars or lists.
|
|
def _append(key, value):
|
|
if value is None:
|
|
return
|
|
if isinstance(value, list):
|
|
group_acc[group][key].extend(value)
|
|
overall[key].extend(value)
|
|
else:
|
|
group_acc[group][key].append(value)
|
|
overall[key].append(value)
|
|
|
|
_append("sum_rewards", metrics.get("sum_rewards"))
|
|
_append("max_rewards", metrics.get("max_rewards"))
|
|
_append("successes", metrics.get("successes"))
|
|
# video_paths is list-like
|
|
paths = metrics.get("video_paths", [])
|
|
if paths:
|
|
group_acc[group]["video_paths"].extend(paths)
|
|
overall["video_paths"].extend(paths)
|
|
|
|
# Choose runner (sequential vs threaded)
|
|
task_runner = partial(
|
|
run_one,
|
|
policy=policy,
|
|
env_preprocessor=env_preprocessor,
|
|
env_postprocessor=env_postprocessor,
|
|
preprocessor=preprocessor,
|
|
postprocessor=postprocessor,
|
|
n_episodes=n_episodes,
|
|
max_episodes_rendered=max_episodes_rendered,
|
|
videos_dir=videos_dir,
|
|
return_episode_data=return_episode_data,
|
|
start_seed=start_seed,
|
|
)
|
|
|
|
if max_parallel_tasks <= 1:
|
|
prefetch_thread: threading.Thread | None = None
|
|
for i, (task_group, task_id, env) in enumerate(tasks):
|
|
if prefetch_thread is not None:
|
|
prefetch_thread.join()
|
|
prefetch_thread = None
|
|
|
|
try:
|
|
tg, tid, metrics = task_runner(task_group, task_id, env)
|
|
_accumulate_to(tg, metrics)
|
|
per_task_infos.append({"task_group": tg, "task_id": tid, "metrics": metrics})
|
|
finally:
|
|
env.close()
|
|
# Prefetch next task's workers *after* closing current env to prevent
|
|
# GPU memory overlap between consecutive tasks.
|
|
if i + 1 < len(tasks):
|
|
next_env = tasks[i + 1][2]
|
|
if hasattr(next_env, "_ensure"):
|
|
prefetch_thread = threading.Thread(target=next_env._ensure, daemon=True)
|
|
prefetch_thread.start()
|
|
else:
|
|
with cf.ThreadPoolExecutor(max_workers=max_parallel_tasks) as executor:
|
|
fut2meta = {}
|
|
for task_group, task_id, env in tasks:
|
|
fut = executor.submit(task_runner, task_group, task_id, env)
|
|
fut2meta[fut] = (task_group, task_id, env)
|
|
for fut in cf.as_completed(fut2meta):
|
|
tg, tid, env = fut2meta[fut]
|
|
try:
|
|
tg, tid, metrics = fut.result()
|
|
_accumulate_to(tg, metrics)
|
|
per_task_infos.append({"task_group": tg, "task_id": tid, "metrics": metrics})
|
|
finally:
|
|
env.close()
|
|
|
|
# compute aggregated metrics helper (robust to lists/scalars)
|
|
def _agg_from_list(xs):
|
|
if not xs:
|
|
return float("nan")
|
|
arr = np.array(xs, dtype=float)
|
|
return float(np.nanmean(arr))
|
|
|
|
# compute per-group aggregates
|
|
groups_aggregated = {}
|
|
for group, acc in group_acc.items():
|
|
groups_aggregated[group] = {
|
|
"avg_sum_reward": _agg_from_list(acc["sum_rewards"]),
|
|
"avg_max_reward": _agg_from_list(acc["max_rewards"]),
|
|
"pc_success": _agg_from_list(acc["successes"]) * 100 if acc["successes"] else float("nan"),
|
|
"n_episodes": len(acc["sum_rewards"]),
|
|
"video_paths": list(acc["video_paths"]),
|
|
}
|
|
|
|
# overall aggregates
|
|
overall_agg = {
|
|
"avg_sum_reward": _agg_from_list(overall["sum_rewards"]),
|
|
"avg_max_reward": _agg_from_list(overall["max_rewards"]),
|
|
"pc_success": _agg_from_list(overall["successes"]) * 100 if overall["successes"] else float("nan"),
|
|
"n_episodes": len(overall["sum_rewards"]),
|
|
"eval_s": time.time() - start_t,
|
|
"eval_ep_s": (time.time() - start_t) / max(1, len(overall["sum_rewards"])),
|
|
"video_paths": list(overall["video_paths"]),
|
|
}
|
|
|
|
return {
|
|
"per_task": per_task_infos,
|
|
"per_group": groups_aggregated,
|
|
"overall": overall_agg,
|
|
}
|
|
|
|
|
|
def main():
|
|
init_logging()
|
|
register_third_party_plugins()
|
|
eval_main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|