10 lines
215 B
Python
10 lines
215 B
Python
from ray.rllib.examples.rl_modules.classes.rock_paper_scissors_heuristic_rlm import (
|
|
AlwaysSameHeuristicRLM,
|
|
BeatLastHeuristicRLM,
|
|
)
|
|
|
|
__all__ = [
|
|
"AlwaysSameHeuristicRLM",
|
|
"BeatLastHeuristicRLM",
|
|
]
|