rsl_rl/rsl_rl/storage/__init__.py

9 lines
224 B
Python

# Copyright 2021 ETH Zurich, NVIDIA CORPORATION
# SPDX-License-Identifier: BSD-3-Clause
"""Implementation of transitions storage for RL-agent."""
from .rollout_storage import RolloutStorage
__all__ = ["RolloutStorage"]