synapse-x / agents /__init__.py
Nithin1026's picture
Initial submission Synapse-X
cb330aa
Raw
History Blame Contribute Delete
381 Bytes
"""
SYNAPSE-X agent package.
"""
from agents.baseline import collect_actions_for_grader, run_episode as run_baseline_episode, select_action
from agents.random_agent import run_episode as run_random_episode, select_random_action
__all__ = [
"collect_actions_for_grader",
"run_baseline_episode",
"run_random_episode",
"select_action",
"select_random_action",
]