EfficientZeroV2/ez/agents/__init__.py
“Shengjiewang-Jason” 1367bca203 first commit
2024-06-07 16:02:01 +08:00

14 lines
464 B
Python

# Copyright (c) EVAR Lab, IIIS, Tsinghua University.
#
# This source code is licensed under the GNU License, Version 3.0
# found in the LICENSE file in the root directory of this source tree.
from ez.agents.ez_atari import EZAtariAgent
from ez.agents.ez_dmc_image import EZDMCImageAgent
from ez.agents.ez_dmc_state import EZDMCStateAgent
names = {
'atari_agent': EZAtariAgent,
'dmc_image_agent': EZDMCImageAgent,
'dmc_state_agent': EZDMCStateAgent,
}