omni.isaac.lab.managers.manager_term_cfg 源代码

# Copyright (c) 2022-2024, The Isaac Lab Project Developers.
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause

"""Configuration terms for different managers."""

from __future__ import annotations

import torch
from collections.abc import Callable
from dataclasses import MISSING
from typing import TYPE_CHECKING, Any

from omni.isaac.lab.utils import configclass
from omni.isaac.lab.utils.modifiers import ModifierCfg
from omni.isaac.lab.utils.noise import NoiseCfg

from .scene_entity_cfg import SceneEntityCfg

if TYPE_CHECKING:
    from .action_manager import ActionTerm
    from .command_manager import CommandTerm
    from .manager_base import ManagerTermBase


[文档]@configclass class ManagerTermBaseCfg: """Configuration for a manager term.""" func: Callable | ManagerTermBase = MISSING """The function or class to be called for the term. The function must take the environment object as the first argument. The remaining arguments are specified in the :attr:`params` attribute. It also supports `callable classes`_, i.e. classes that implement the :meth:`__call__` method. In this case, the class should inherit from the :class:`ManagerTermBase` class and implement the required methods. .. _`callable classes`: https://docs.python.org/3/reference/datamodel.html#object.__call__ """ params: dict[str, Any | SceneEntityCfg] = dict() """The parameters to be passed to the function as keyword arguments. Defaults to an empty dict. .. note:: If the value is a :class:`SceneEntityCfg` object, the manager will query the scene entity from the :class:`InteractiveScene` and process the entity's joints and bodies as specified in the :class:`SceneEntityCfg` object. """
## # Action manager. ##
[文档]@configclass class ActionTermCfg: """Configuration for an action term.""" class_type: type[ActionTerm] = MISSING """The associated action term class. The class should inherit from :class:`omni.isaac.lab.managers.action_manager.ActionTerm`. """ asset_name: str = MISSING """The name of the scene entity. This is the name defined in the scene configuration file. See the :class:`InteractiveSceneCfg` class for more details. """ debug_vis: bool = False """Whether to visualize debug information. Defaults to False."""
## # Command manager. ##
[文档]@configclass class CommandTermCfg: """Configuration for a command generator term.""" class_type: type[CommandTerm] = MISSING """The associated command term class to use. The class should inherit from :class:`omni.isaac.lab.managers.command_manager.CommandTerm`. """ resampling_time_range: tuple[float, float] = MISSING """Time before commands are changed [s].""" debug_vis: bool = False """Whether to visualize debug information. Defaults to False."""
## # Curriculum manager. ##
[文档]@configclass class CurriculumTermCfg(ManagerTermBaseCfg): """Configuration for a curriculum term.""" func: Callable[..., float | dict[str, float] | None] = MISSING """The name of the function to be called. This function should take the environment object, environment indices and any other parameters as input and return the curriculum state for logging purposes. If the function returns None, the curriculum state is not logged. """
## # Observation manager. ##
[文档]@configclass class ObservationTermCfg(ManagerTermBaseCfg): """Configuration for an observation term.""" func: Callable[..., torch.Tensor] = MISSING """The name of the function to be called. This function should take the environment object and any other parameters as input and return the observation signal as torch float tensors of shape (num_envs, obs_term_dim). """ modifiers: list[ModifierCfg] | None = None """The list of data modifiers to apply to the observation in order. Defaults to None, in which case no modifications will be applied. Modifiers are applied in the order they are specified in the list. They can be stateless or stateful, and can be used to apply transformations to the observation data. For example, a modifier can be used to normalize the observation data or to apply a rolling average. For more information on modifiers, see the :class:`~omni.isaac.lab.utils.modifiers.ModifierCfg` class. """ noise: NoiseCfg | None = None """The noise to add to the observation. Defaults to None, in which case no noise is added.""" clip: tuple[float, float] | None = None """The clipping range for the observation after adding noise. Defaults to None, in which case no clipping is applied.""" scale: float | None = None """The scale to apply to the observation after clipping. Defaults to None, in which case no scaling is applied (same as setting scale to :obj:`1`)."""
[文档]@configclass class ObservationGroupCfg: """Configuration for an observation group.""" concatenate_terms: bool = True """Whether to concatenate the observation terms in the group. Defaults to True. If true, the observation terms in the group are concatenated along the last dimension. Otherwise, they are kept separate and returned as a dictionary. If the observation group contains terms of different dimensions, it must be set to False. """ enable_corruption: bool = False """Whether to enable corruption for the observation group. Defaults to False. If true, the observation terms in the group are corrupted by adding noise (if specified). Otherwise, no corruption is applied. """
## # Event manager ##
[文档]@configclass class EventTermCfg(ManagerTermBaseCfg): """Configuration for a event term.""" func: Callable[..., None] = MISSING """The name of the function to be called. This function should take the environment object, environment indices and any other parameters as input. """ mode: str = MISSING """The mode in which the event term is applied. Note: The mode name ``"interval"`` is a special mode that is handled by the manager Hence, its name is reserved and cannot be used for other modes. """ interval_range_s: tuple[float, float] | None = None """The range of time in seconds at which the term is applied. Defaults to None. Based on this, the interval is sampled uniformly between the specified range for each environment instance. The term is applied on the environment instances where the current time hits the interval time. Note: This is only used if the mode is ``"interval"``. """ is_global_time: bool = False """Whether randomization should be tracked on a per-environment basis. Defaults to False. If True, the same interval time is used for all the environment instances. If False, the interval time is sampled independently for each environment instance and the term is applied when the current time hits the interval time for that instance. Note: This is only used if the mode is ``"interval"``. """ min_step_count_between_reset: int = 0 """The number of environment steps after which the term is applied since its last application. Defaults to 0. When the mode is "reset", the term is only applied if the number of environment steps since its last application exceeds this quantity. This helps to avoid calling the term too often, thereby improving performance. If the value is zero, the term is applied on every call to the manager with the mode "reset". Note: This is only used if the mode is ``"reset"``. """
## # Reward manager. ##
[文档]@configclass class RewardTermCfg(ManagerTermBaseCfg): """Configuration for a reward term.""" func: Callable[..., torch.Tensor] = MISSING """The name of the function to be called. This function should take the environment object and any other parameters as input and return the reward signals as torch float tensors of shape (num_envs,). """ weight: float = MISSING """The weight of the reward term. This is multiplied with the reward term's value to compute the final reward. Note: If the weight is zero, the reward term is ignored. """
## # Termination manager. ##
[文档]@configclass class TerminationTermCfg(ManagerTermBaseCfg): """Configuration for a termination term.""" func: Callable[..., torch.Tensor] = MISSING """The name of the function to be called. This function should take the environment object and any other parameters as input and return the termination signals as torch boolean tensors of shape (num_envs,). """ time_out: bool = False """Whether the termination term contributes towards episodic timeouts. Defaults to False. Note: These usually correspond to tasks that have a fixed time limit. """