12 lines
307 B
Python
12 lines
307 B
Python
# Copyright (c) 2021-2025, ETH Zurich and NVIDIA CORPORATION
|
|
# All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
"""Implementation of different RL agents."""
|
|
|
|
from .distillation import Distillation
|
|
from .ppo import PPO
|
|
from .amp_ppo import AMP_PPO
|
|
__all__ = ["PPO", "Distillation", "AMP_PPO"]
|