Co-authored-by: Michel Aractingi <michel.aractingi@huggingface.co> Co-authored-by: Eugene Mironov <helper2424@gmail.com> Co-authored-by: s1lent4gnt <kmeftah.khalil@gmail.com> Co-authored-by: Ke Wang <superwk1017@gmail.com> Co-authored-by: Yoel Chornton <yoel.chornton@gmail.com> Co-authored-by: imstevenpmwork <steven.palma@huggingface.co> Co-authored-by: Simon Alibert <simon.alibert@huggingface.co>
77 lines
2.6 KiB
Python
77 lines
2.6 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.
|
|
from dataclasses import dataclass, field
|
|
|
|
from lerobot.common.optim.optimizers import AdamWConfig, OptimizerConfig
|
|
from lerobot.common.optim.schedulers import LRSchedulerConfig
|
|
from lerobot.configs.policies import PreTrainedConfig
|
|
from lerobot.configs.types import NormalizationMode
|
|
|
|
|
|
@PreTrainedConfig.register_subclass(name="reward_classifier")
|
|
@dataclass
|
|
class RewardClassifierConfig(PreTrainedConfig):
|
|
"""Configuration for the Reward Classifier model."""
|
|
|
|
name: str = "reward_classifier"
|
|
num_classes: int = 2
|
|
hidden_dim: int = 256
|
|
latent_dim: int = 256
|
|
image_embedding_pooling_dim: int = 8
|
|
dropout_rate: float = 0.1
|
|
model_name: str = "helper2424/resnet10"
|
|
device: str = "cpu"
|
|
model_type: str = "cnn" # "transformer" or "cnn"
|
|
num_cameras: int = 2
|
|
learning_rate: float = 1e-4
|
|
weight_decay: float = 0.01
|
|
grad_clip_norm: float = 1.0
|
|
normalization_mapping: dict[str, NormalizationMode] = field(
|
|
default_factory=lambda: {
|
|
"VISUAL": NormalizationMode.MEAN_STD,
|
|
}
|
|
)
|
|
|
|
@property
|
|
def observation_delta_indices(self) -> list | None:
|
|
return None
|
|
|
|
@property
|
|
def action_delta_indices(self) -> list | None:
|
|
return None
|
|
|
|
@property
|
|
def reward_delta_indices(self) -> list | None:
|
|
return None
|
|
|
|
def get_optimizer_preset(self) -> OptimizerConfig:
|
|
return AdamWConfig(
|
|
lr=self.learning_rate,
|
|
weight_decay=self.weight_decay,
|
|
grad_clip_norm=self.grad_clip_norm,
|
|
)
|
|
|
|
def get_scheduler_preset(self) -> LRSchedulerConfig | None:
|
|
return None
|
|
|
|
def validate_features(self) -> None:
|
|
"""Validate feature configurations."""
|
|
has_image = any(key.startswith("observation.image") for key in self.input_features)
|
|
if not has_image:
|
|
raise ValueError(
|
|
"You must provide an image observation (key starting with 'observation.image') in the input features"
|
|
)
|