mirror of
https://github.com/huggingface/lerobot.git
synced 2026-08-08 01:19:46 +00:00
75 lines
2.4 KiB
Python
75 lines
2.4 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
|
|
import torch
|
|
|
|
from lerobot.policies.vla_jepa.world_model import (
|
|
ActionConditionedVideoPredictor,
|
|
)
|
|
|
|
_ACTION_EMBED_DIM = 8
|
|
|
|
|
|
def _make_predictor(
|
|
embed_dim: int = 8,
|
|
action_embed_dim: int = _ACTION_EMBED_DIM,
|
|
predictor_embed_dim: int = 24,
|
|
num_action_tokens: int = 2,
|
|
tokens_per_frame: int = 1,
|
|
) -> ActionConditionedVideoPredictor:
|
|
return ActionConditionedVideoPredictor(
|
|
num_frames=1,
|
|
img_size=(1, tokens_per_frame),
|
|
patch_size=1,
|
|
tubelet_size=1,
|
|
embed_dim=embed_dim,
|
|
action_embed_dim=action_embed_dim,
|
|
predictor_embed_dim=predictor_embed_dim,
|
|
depth=1,
|
|
num_heads=2,
|
|
mlp_ratio=2.0,
|
|
num_action_tokens_per_step=num_action_tokens,
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"batch,num_steps,tokens_per_frame,embed_dim",
|
|
[
|
|
(1, 2, 1, 8),
|
|
(2, 3, 4, 8),
|
|
(4, 5, 2, 16),
|
|
],
|
|
)
|
|
def test_predictor_output_shape(batch: int, num_steps: int, tokens_per_frame: int, embed_dim: int) -> None:
|
|
predictor = _make_predictor(
|
|
embed_dim=embed_dim, action_embed_dim=_ACTION_EMBED_DIM, tokens_per_frame=tokens_per_frame
|
|
)
|
|
frame_tokens = torch.randn(batch, num_steps * tokens_per_frame, embed_dim)
|
|
action_tokens = torch.randn(batch, num_steps * 2, _ACTION_EMBED_DIM)
|
|
out = predictor(frame_tokens, action_tokens)
|
|
assert tuple(out.shape) == (batch, num_steps * tokens_per_frame, embed_dim)
|
|
assert torch.isfinite(out).all()
|
|
|
|
|
|
def test_predictor_step_mismatch_raises() -> None:
|
|
predictor = _make_predictor(tokens_per_frame=4)
|
|
frame_tokens = torch.randn(2, 3 * 4, 8) # 3 steps, 4 tokens each
|
|
with pytest.raises(RuntimeError):
|
|
predictor(frame_tokens, torch.randn(2, 2 * 2, 8)) # 2 steps → mismatch
|