mirror of
https://github.com/huggingface/lerobot.git
synced 2026-06-04 12:51:27 +00:00
* Migrate gym_manipulator to use the pipeline Added get_teleop_events function to capture relevant events from teleop devices unrelated to actions * Added the capability to record a dataset * Added the replay functionality with the pipeline * Refactored `actor.py` to use the pipeline * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * RL works at this commit - fixed actor.py and bugs in gym_manipulator * change folder structure to reduce the size of gym_manip * Refactored hilserl config * Remove dataset and mode from HilSerlEnvConfig to a GymManipulatorConfig to reduce verbose of configs during training * format docs * removed get_teleop_events from abc * Refactor environment configuration and processing pipeline for GymHIL support. Removed device attribute from HILSerlRobotEnvConfig, added DummyTeleopDevice for simulation, and updated processor creation to accommodate GymHIL environments. * Improved typing for HILRobotEnv config and GymManipulator config * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Migrated `gym_manipulator` to use a more modular structure similar to phone teleop * Refactor gripper handling and transition processing in HIL and robot kinematic processors - Updated gripper position handling to use a consistent key format across processors - Improved the EEReferenceAndDelta class to handle reference joint positions. - Added support for discrete gripper actions in the GripperVelocityToJoint processor. - Refactored the gym manipulator to improve modularity and clarity in processing steps. * Added delta_action_processor mapping wrapper * Added missing file delta_action_processor and improved imports in `gym_manipulator` * nit * Added missing file joint_observation_processor * Enhance processing architecture with new teleoperation processors - Introduced `AddTeleopActionAsComplimentaryData` and `AddTeleopEventsAsInfo` for integrating teleoperator actions and events into transitions. - Added `Torch2NumpyActionProcessor` and `Numpy2TorchActionProcessor` for seamless conversion between PyTorch tensors and NumPy arrays. - Updated `__init__.py` to include new processors in module exports, improving modularity and clarity in the processing pipeline. - GymHIL is now fully supported with HIL using the pipeline * Refactor configuration structure for gym_hil integration - Renamed sections for better readability, such as changing "Gym Wrappers Configuration" to "Processor Configuration." - Enhanced documentation with clear examples for dataset collection and policy evaluation configurations. * Enhance reset configuration and teleoperation event handling - Added `terminate_on_success` parameter to `ResetConfig` and `InterventionActionProcessor` for controlling episode termination behavior upon success detection. - Updated documentation to clarify the impact of `terminate_on_success` on data collection for reward classifier training. - Refactored teleoperation event handling to use `TeleopEvents` constants for improved readability and maintainability across various modules. * fix(keyboard teleop), delta action keys * Added transform features and feature contract * Added transform features for image crop * Enum for TeleopEvents * Update tranform_features delta action proc --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
82 lines
2.6 KiB
Python
82 lines
2.6 KiB
Python
# Copyright 2024 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 enum import Enum
|
|
|
|
from .config import TeleoperatorConfig
|
|
from .teleoperator import Teleoperator
|
|
|
|
|
|
class TeleopEvents(Enum):
|
|
"""Shared constants for teleoperator events across teleoperators."""
|
|
|
|
SUCCESS = "success"
|
|
FAILURE = "failure"
|
|
RERECORD_EPISODE = "rerecord_episode"
|
|
IS_INTERVENTION = "is_intervention"
|
|
TERMINATE_EPISODE = "terminate_episode"
|
|
|
|
|
|
def make_teleoperator_from_config(config: TeleoperatorConfig) -> Teleoperator:
|
|
if config.type == "keyboard":
|
|
from .keyboard import KeyboardTeleop
|
|
|
|
return KeyboardTeleop(config)
|
|
elif config.type == "koch_leader":
|
|
from .koch_leader import KochLeader
|
|
|
|
return KochLeader(config)
|
|
elif config.type == "so100_leader":
|
|
from .so100_leader import SO100Leader
|
|
|
|
return SO100Leader(config)
|
|
elif config.type == "so101_leader":
|
|
from .so101_leader import SO101Leader
|
|
|
|
return SO101Leader(config)
|
|
elif config.type == "stretch3":
|
|
from .stretch3_gamepad import Stretch3GamePad
|
|
|
|
return Stretch3GamePad(config)
|
|
elif config.type == "widowx":
|
|
from .widowx import WidowX
|
|
|
|
return WidowX(config)
|
|
elif config.type == "mock_teleop":
|
|
from tests.mocks.mock_teleop import MockTeleop
|
|
|
|
return MockTeleop(config)
|
|
elif config.type == "gamepad":
|
|
from .gamepad.teleop_gamepad import GamepadTeleop
|
|
|
|
return GamepadTeleop(config)
|
|
elif config.type == "keyboard_ee":
|
|
from .keyboard.teleop_keyboard import KeyboardEndEffectorTeleop
|
|
|
|
return KeyboardEndEffectorTeleop(config)
|
|
elif config.type == "homunculus_glove":
|
|
from .homunculus import HomunculusGlove
|
|
|
|
return HomunculusGlove(config)
|
|
elif config.type == "homunculus_arm":
|
|
from .homunculus import HomunculusArm
|
|
|
|
return HomunculusArm(config)
|
|
elif config.type == "bi_so100_leader":
|
|
from .bi_so100_leader import BiSO100Leader
|
|
|
|
return BiSO100Leader(config)
|
|
else:
|
|
raise ValueError(config.type)
|