mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-17 17:50:09 +00:00
f0d2b37beb
* chore(dependencies): upgrade transformers + hggingface-hub + peft + scipy * chore(dependencies): bump pi0 family to transformers v5 * chore(dependencies): bump wall x to transformers v5 * chore(dependencies): bump gr00t to transformers v5 * chore(style): fix pre-commit * fix(policy): xvla forced_bos_token missing * test(rl): skip ci tests for resnet10 * Fix: full pi models support for transformer v5 (#2967) * fix(pi): remove loss truncation * fix(pi): remove state padding before tokenization * fix(pi): fix image padding value * fix from_pretrain * add transformer v5 changes * remove reference * more fixes * make it work * add support for rest of pi family * add pifast work * more changes * more changes * more cleanup * fix torch params * dtype fix * torch compile * embed mismatch fix * revert groot * more nit fixes * remove unused classes * more fixes * revert * nit * torch dtype warning fix * but back dynamic renaming * add tie embedding --------- Co-authored-by: Yufei Sun <skieyfly@gmail.com> * chore: fix XVLA in transformers v5 (#3006) * test(policies): enable wall x CI testing * style(test): pre-commit check * style(test): pre-commit * fix wall x for transformer v5 (#3008) * tv5 fix * various wall x fixes * Delete tests/policies/pi0_pi05/print_pi05_output_logits.py Signed-off-by: Jade Choghari <chogharijade@gmail.com> * sync modeling_florence2.py with chore/bump_transformers_v5 * more * more fixes * more * remove comment * more --------- Signed-off-by: Jade Choghari <chogharijade@gmail.com> * chore(dependencies): adjust dependencies versioning after transformers v5 (#3034) * chore(dependecies): adjust dependecies versioning after transformers v5 * fix(policies): remove deprecated input_embeds * fix(policies): dict _tied_weights_keys * chore(depedencies): common qwen-vl-utils * chore(dependencies): bump transformers to 5.2 * Fix policy testing for tv5 (#3032) * fix ci logger * other fix * fix mypy * change logits to torch2.10 * skip wallx| * remove logging --------- Co-authored-by: Steven Palma <imstevenpmwork@ieee.org> * feat(ci): log into HF to unblock some CI tests (#3007) * feat(ci): log into HF to unblock some CI tests * chore(ci): change hf call + secret name * fix(ci): temp fix for pi0 rtc test * test(policies): require_cuda for unblocked tests * test(policies): require_cuda wall_x * fic(tests): require_cuda outter most for pi0 * fix(test): return instead of yield --------- Signed-off-by: Steven Palma <imstevenpmwork@ieee.org> * style(test): fix pre-commit * chore(deps): upgrade transformers (#3050) * chore(test): use lerobot model * fix(policies): change default action tokenizer for wall x * sample on cpu * Revert "Merge branch 'chore/bump_transformers_v5' of https://github.com/huggingface/lerobot into chore/bump_transformers_v5" This reverts commitd9b76755f7, reversing changes made to89359cb0b6. * Reapply "Merge branch 'chore/bump_transformers_v5' of https://github.com/huggingface/lerobot into chore/bump_transformers_v5" This reverts commitc9914db78b. --------- Signed-off-by: Jade Choghari <chogharijade@gmail.com> Signed-off-by: Steven Palma <imstevenpmwork@ieee.org> Co-authored-by: Jade Choghari <chogharijade@gmail.com> Co-authored-by: Yufei Sun <skieyfly@gmail.com> Co-authored-by: Pepijn <pepijn@huggingface.co>
132 lines
4.4 KiB
Python
132 lines
4.4 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2025 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.
|
|
|
|
"""Test script to verify Wall-X policy integration with LeRobot, only meant to be run locally!"""
|
|
|
|
import pytest
|
|
import torch
|
|
|
|
# Skip if required dependencies are not available
|
|
pytest.importorskip("peft")
|
|
pytest.importorskip("transformers")
|
|
pytest.importorskip("torchdiffeq")
|
|
|
|
from lerobot.policies.factory import make_policy_config # noqa: E402
|
|
from lerobot.policies.wall_x import WallXConfig # noqa: E402
|
|
from lerobot.policies.wall_x.modeling_wall_x import WallXPolicy # noqa: E402
|
|
from lerobot.policies.wall_x.processor_wall_x import make_wall_x_pre_post_processors # noqa: E402
|
|
from lerobot.utils.random_utils import set_seed # noqa: E402
|
|
from tests.utils import require_cuda # noqa: E402
|
|
|
|
|
|
@require_cuda
|
|
def test_policy_instantiation():
|
|
# Create config
|
|
set_seed(42)
|
|
config = WallXConfig(device="cuda")
|
|
|
|
# Set up input_features and output_features in the config
|
|
from lerobot.configs.types import FeatureType, PolicyFeature
|
|
|
|
config.input_features = {
|
|
"observation.state": PolicyFeature(
|
|
type=FeatureType.STATE,
|
|
shape=(7,),
|
|
),
|
|
"observation.images.face_view": PolicyFeature(
|
|
type=FeatureType.VISUAL,
|
|
shape=(3, 224, 224),
|
|
),
|
|
}
|
|
|
|
config.output_features = {
|
|
"action": PolicyFeature(
|
|
type=FeatureType.ACTION,
|
|
shape=(7,),
|
|
),
|
|
}
|
|
|
|
# Create dummy dataset stats
|
|
dataset_stats = {
|
|
"observation.state": {
|
|
"mean": torch.zeros(7),
|
|
"std": torch.ones(7),
|
|
},
|
|
"action": {
|
|
"mean": torch.zeros(7),
|
|
"std": torch.ones(7),
|
|
},
|
|
"observation.images.face_view": {
|
|
"mean": torch.zeros(3, 224, 224),
|
|
"std": torch.ones(3, 224, 224),
|
|
},
|
|
}
|
|
|
|
# Instantiate policy
|
|
policy = WallXPolicy(config)
|
|
preprocessor, postprocessor = make_wall_x_pre_post_processors(config=config, dataset_stats=dataset_stats)
|
|
# Test forward pass with dummy data
|
|
batch_size = 1
|
|
device = config.device
|
|
batch = {
|
|
"observation.state": torch.randn(batch_size, 7, dtype=torch.float32, device=device),
|
|
"action": torch.randn(batch_size, config.chunk_size, 7, dtype=torch.float32, device=device),
|
|
"observation.images.face_view": torch.rand(
|
|
batch_size, 3, 224, 224, dtype=torch.float32, device=device
|
|
), # Use rand for [0,1] range
|
|
"task": ["Pick up the object"] * batch_size,
|
|
}
|
|
batch = preprocessor(batch)
|
|
try:
|
|
loss, loss_dict = policy.forward(batch)
|
|
print(f"Forward pass successful. Loss: {loss_dict['loss']:.4f}")
|
|
except Exception as e:
|
|
print(f"Forward pass failed: {e}")
|
|
raise
|
|
|
|
# Test inference
|
|
batch = {
|
|
"observation.state": torch.randn(batch_size, 7, dtype=torch.float32, device=device),
|
|
"observation.images.face_view": torch.rand(
|
|
batch_size, 3, 224, 224, dtype=torch.float32, device=device
|
|
), # Use rand for [0,1] range
|
|
"task": ["Pick up the object"] * batch_size,
|
|
}
|
|
batch = preprocessor(batch)
|
|
try:
|
|
with torch.no_grad():
|
|
action = policy.select_action(batch)
|
|
action = postprocessor(action)
|
|
print(f"Action: {action}")
|
|
print(f"Action prediction successful. Action shape: {action.shape}")
|
|
except Exception as e:
|
|
print(f"Action prediction failed: {e}")
|
|
raise
|
|
|
|
|
|
@require_cuda
|
|
def test_config_creation():
|
|
"""Test policy config creation through factory."""
|
|
try:
|
|
config = make_policy_config(
|
|
policy_type="wall_x",
|
|
)
|
|
print("Config created successfully through factory")
|
|
print(f" Config type: {type(config).__name__}")
|
|
except Exception as e:
|
|
print(f"Config creation failed: {e}")
|
|
raise
|