mirror of
https://github.com/huggingface/lerobot.git
synced 2026-07-30 13:09:40 +00:00
c5371d0691
* refactor(processors): share policy pipeline builders * Apply suggestions from code review Co-authored-by: Martino Russi <77496684+nepyope@users.noreply.github.com> Signed-off-by: Steven Palma <imstevenpmwork@ieee.org> * fix(processor): solve style after commit suggestions --------- Signed-off-by: Steven Palma <imstevenpmwork@ieee.org> Co-authored-by: Martino Russi <77496684+nepyope@users.noreply.github.com>
158 lines
5.7 KiB
Python
158 lines
5.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2025 Physical Intelligence and 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 typing import Any
|
|
|
|
import torch
|
|
|
|
from lerobot.configs import PipelineFeatureType, PolicyFeature
|
|
from lerobot.processor import (
|
|
AbsoluteActionsProcessorStep,
|
|
ComplementaryDataProcessorStep,
|
|
PolicyAction,
|
|
PolicyProcessorPipeline,
|
|
ProcessorStep,
|
|
ProcessorStepRegistry,
|
|
RelativeActionsProcessorStep,
|
|
TokenizerProcessorStep,
|
|
make_default_policy_processor_steps,
|
|
make_policy_processor_pipelines,
|
|
)
|
|
|
|
from .configuration_pi0 import PI0Config
|
|
|
|
|
|
@ProcessorStepRegistry.register(name="pi0_new_line_processor")
|
|
class Pi0NewLineProcessor(ComplementaryDataProcessorStep):
|
|
"""
|
|
Ensures that the task description string ends with a newline character.
|
|
|
|
This processing step is required for compatibility with the PaliGemma tokenizer,
|
|
which expects a newline at the end of the text prompt. It handles both single
|
|
strings and lists of strings for the 'task' key in complementary data.
|
|
"""
|
|
|
|
def complementary_data(self, complementary_data):
|
|
"""
|
|
Adds a newline to the 'task' field if it doesn't already have one.
|
|
|
|
Args:
|
|
complementary_data: A dictionary that may contain a 'task' key with a
|
|
string or list of strings.
|
|
|
|
Returns:
|
|
A new dictionary with the modified 'task' field.
|
|
"""
|
|
if "task" not in complementary_data:
|
|
return complementary_data
|
|
|
|
task = complementary_data["task"]
|
|
if task is None:
|
|
return complementary_data
|
|
|
|
new_complementary_data = dict(complementary_data)
|
|
|
|
# Handle both string and list of strings
|
|
if isinstance(task, str):
|
|
# Single string: add newline if not present
|
|
if not task.endswith("\n"):
|
|
new_complementary_data["task"] = f"{task}\n"
|
|
elif isinstance(task, list) and all(isinstance(t, str) for t in task):
|
|
# List of strings: add newline to each if not present
|
|
new_complementary_data["task"] = [t if t.endswith("\n") else f"{t}\n" for t in task]
|
|
# If task is neither string nor list of strings, leave unchanged
|
|
|
|
return new_complementary_data
|
|
|
|
def transform_features(
|
|
self, features: dict[PipelineFeatureType, dict[str, PolicyFeature]]
|
|
) -> dict[PipelineFeatureType, dict[str, PolicyFeature]]:
|
|
"""
|
|
This step does not alter the feature definitions.
|
|
|
|
Args:
|
|
features: The input feature dictionary.
|
|
|
|
Returns:
|
|
The unchanged feature dictionary.
|
|
"""
|
|
return features
|
|
|
|
|
|
def make_pi0_pre_post_processors(
|
|
config: PI0Config,
|
|
dataset_stats: dict[str, dict[str, torch.Tensor]] | None = None,
|
|
) -> tuple[
|
|
PolicyProcessorPipeline[dict[str, Any], dict[str, Any]],
|
|
PolicyProcessorPipeline[PolicyAction, PolicyAction],
|
|
]:
|
|
"""
|
|
Constructs pre-processor and post-processor pipelines for the PI0 policy.
|
|
|
|
The pre-processing pipeline prepares input data for the model by:
|
|
1. Renaming features to match pretrained configurations.
|
|
2. Normalizing input and output features based on dataset statistics.
|
|
3. Adding a batch dimension.
|
|
4. Appending a newline character to the task description for tokenizer compatibility.
|
|
5. Tokenizing the text prompt using the PaliGemma tokenizer.
|
|
6. Moving all data to the specified device.
|
|
|
|
The post-processing pipeline handles the model's output by:
|
|
1. Moving data to the CPU.
|
|
2. Unnormalizing the output features to their original scale.
|
|
|
|
Args:
|
|
config: The configuration object for the PI0 policy.
|
|
dataset_stats: A dictionary of statistics for normalization.
|
|
preprocessor_kwargs: Additional arguments for the pre-processor pipeline.
|
|
postprocessor_kwargs: Additional arguments for the post-processor pipeline.
|
|
|
|
Returns:
|
|
A tuple containing the configured pre-processor and post-processor pipelines.
|
|
"""
|
|
|
|
relative_step = RelativeActionsProcessorStep(
|
|
enabled=config.use_relative_actions,
|
|
exclude_joints=getattr(config, "relative_exclude_joints", []),
|
|
action_names=getattr(config, "action_feature_names", None),
|
|
)
|
|
|
|
steps = make_default_policy_processor_steps(config, dataset_stats)
|
|
|
|
# OpenPI order: raw → relative → normalize → model → unnormalize → absolute
|
|
input_steps: list[ProcessorStep] = [
|
|
steps.rename_observations, # To mimic the same processor as pretrained one
|
|
steps.add_batch_dim,
|
|
Pi0NewLineProcessor(), # Add newlines before tokenization for PaliGemma
|
|
TokenizerProcessorStep(
|
|
tokenizer_name="google/paligemma-3b-pt-224",
|
|
max_length=config.tokenizer_max_length,
|
|
padding_side="right",
|
|
padding="max_length",
|
|
),
|
|
steps.to_device,
|
|
relative_step,
|
|
steps.normalize,
|
|
]
|
|
|
|
output_steps: list[ProcessorStep] = [
|
|
steps.unnormalize,
|
|
AbsoluteActionsProcessorStep(enabled=config.use_relative_actions, relative_step=relative_step),
|
|
steps.to_cpu,
|
|
]
|
|
|
|
return make_policy_processor_pipelines(input_steps=input_steps, output_steps=output_steps)
|