c5ca79a354
Training environment to make a walk model for the hexapod generated code that will be checked
7 lines
177 B
Python
7 lines
177 B
Python
from .env import JackBotEnv
|
|
from .model import ActorCritic
|
|
from .train import train
|
|
from .evaluate import evaluate
|
|
|
|
__all__ = ["JackBotEnv", "ActorCritic", "train", "evaluate"]
|