mirror of
https://github.com/gryf/coach.git
synced 2025-12-18 11:40:18 +01:00
Adding mxnet components to rl_coach architectures. - Supports PPO and DQN - Tested with CartPole_PPO and CarPole_DQN - Normalizing filters don't work right now (see #49) and are disabled in CartPole_PPO preset - Checkpointing is disabled for MXNet
5 lines
133 B
Python
5 lines
133 B
Python
from .image_embedder import ImageEmbedder
|
|
from .vector_embedder import VectorEmbedder
|
|
|
|
__all__ = ['ImageEmbedder', 'VectorEmbedder']
|