mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-16 17:20:05 +00:00
52 lines
1.6 KiB
Python
52 lines
1.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.
|
|
|
|
"""
|
|
Public API for lerobot configuration types and base config classes.
|
|
|
|
NOTE: TrainPipelineConfig, EvalPipelineConfig, and TrainRLServerPipelineConfig
|
|
are intentionally NOT re-exported here to avoid circular dependencies
|
|
(they import lerobot.envs and lerobot.policies at module level).
|
|
Import them directly: ``from lerobot.configs.train import TrainPipelineConfig``
|
|
"""
|
|
|
|
from .default import DatasetConfig, EvalConfig, PeftConfig, WandBConfig
|
|
from .policies import PreTrainedConfig
|
|
from .recipe import MessageTurn, TrainingRecipe, load_recipe
|
|
from .types import (
|
|
FeatureType,
|
|
NormalizationMode,
|
|
PipelineFeatureType,
|
|
PolicyFeature,
|
|
RTCAttentionSchedule,
|
|
)
|
|
|
|
__all__ = [
|
|
# Types
|
|
"FeatureType",
|
|
"NormalizationMode",
|
|
"PipelineFeatureType",
|
|
"PolicyFeature",
|
|
"RTCAttentionSchedule",
|
|
# Config classes
|
|
"DatasetConfig",
|
|
"EvalConfig",
|
|
"MessageTurn",
|
|
"PeftConfig",
|
|
"PreTrainedConfig",
|
|
"TrainingRecipe",
|
|
"WandBConfig",
|
|
"load_recipe",
|
|
]
|