mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-14 05:22:14 +00:00
b81909fc28
Make the LingBot-VA port runnable on both LIBERO and RoboTwin and clean up the package to LeRobot conventions. - Consolidate all vendored Wan2.2 model code (transformer, attention, VAE helpers, flow-matching scheduler, grid utils, flex-attention) into a single modeling_lingbot_va.py; remove the separate wan_*/schedulers modules. - Move the fixed action (un)normalization quantiles out of the config and into the post-processor (LIBERO 7-DoF + RoboTwin 16-d eef); remove the conversion script in favour of ready-to-use LeRobot-format checkpoints on the Hub. - Fixes found via on-sim validation: undo LIBERO's 180-degree image flip (image_hflip), encode obs as a multi-frame streaming-VAE clip, reset the streaming VAE cache between episodes, run the transformer in config.dtype, lazy-load frozen VAE/UMT5 by subfolder with the text encoder on CPU. - RoboTwin: add an end-effector-pose action mode to RoboTwinEnv (16-d per-arm xyz+quat+gripper deltas composed onto the initial eef pose, executed via CuRobo IK) and the robotwin_tshape latent layout (full-res head + half-res wrists via a second streaming VAE) with the upstream RoboTwin action quantiles + camera mapping. - Predicted-video saving works for both benchmarks; docs + tests updated. Co-authored-by: Cursor <cursoragent@cursor.com>
79 lines
2.6 KiB
Python
79 lines
2.6 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2026 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.
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from lerobot.configs.policies import PreTrainedConfig
|
|
from lerobot.configs.types import FeatureType, PolicyFeature
|
|
from lerobot.policies.lingbot_va.configuration_lingbot_va import LingBotVAConfig
|
|
from lerobot.utils.constants import ACTION, OBS_IMAGES
|
|
|
|
|
|
def make_config(**overrides) -> LingBotVAConfig:
|
|
kwargs = {"device": "cpu"}
|
|
kwargs.update(overrides)
|
|
return LingBotVAConfig(**kwargs)
|
|
|
|
|
|
def test_registered_in_choice_registry() -> None:
|
|
assert "lingbot_va" in PreTrainedConfig.get_known_choices()
|
|
assert PreTrainedConfig.get_choice_class("lingbot_va") is LingBotVAConfig
|
|
|
|
|
|
def test_type_property() -> None:
|
|
assert make_config().type == "lingbot_va"
|
|
|
|
|
|
def test_chunk_size_and_action_steps() -> None:
|
|
cfg = make_config(frame_chunk_size=4, action_per_frame=4)
|
|
assert cfg.chunk_size == 16
|
|
assert cfg.n_action_steps == 16
|
|
assert cfg.action_delta_indices == list(range(16))
|
|
assert cfg.observation_delta_indices is None
|
|
assert cfg.reward_delta_indices is None
|
|
|
|
|
|
def test_optimizer_and_scheduler_presets() -> None:
|
|
cfg = make_config()
|
|
opt = cfg.get_optimizer_preset()
|
|
assert opt.lr == cfg.optimizer_lr
|
|
sched = cfg.get_scheduler_preset()
|
|
assert sched.num_warmup_steps == cfg.scheduler_warmup_steps
|
|
|
|
|
|
def test_validate_features_sets_action_feature() -> None:
|
|
cfg = make_config()
|
|
cfg.input_features = {f"{OBS_IMAGES}.image": PolicyFeature(type=FeatureType.VISUAL, shape=(3, 128, 128))}
|
|
cfg.output_features = {}
|
|
cfg.validate_features()
|
|
assert ACTION in cfg.output_features
|
|
assert cfg.output_features[ACTION].shape == (len(cfg.used_action_channel_ids),)
|
|
|
|
|
|
def test_validate_features_no_visual_raises() -> None:
|
|
cfg = make_config()
|
|
cfg.input_features = {}
|
|
cfg.output_features = {}
|
|
with pytest.raises(ValueError, match="at least one visual input feature"):
|
|
cfg.validate_features()
|
|
|
|
|
|
def test_invalid_attn_mode_raises() -> None:
|
|
with pytest.raises(ValueError, match="attn_mode"):
|
|
make_config(attn_mode="banana")
|