1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 11:40:18 +01:00

bug fix for clipped ppo for discrete controls

This commit is contained in:
itaicaspi-intel
2018-09-18 10:37:42 +03:00
parent abaa58b559
commit 73cc6e39d0
2 changed files with 9 additions and 2 deletions

View File

@@ -52,7 +52,12 @@ class ExplorationPolicy(object):
:param action_values: A list of action values
:return: The chosen action
"""
pass
if self.__class__ == ExplorationPolicy:
raise ValueError("The ExplorationPolicy class is an abstract class and should not be used directly. "
"Please set the exploration parameters to point to an inheriting class like EGreedy or "
"AdditiveNoise")
else:
raise ValueError("The get_action function should be overridden in the inheriting exploration class")
def change_phase(self, phase):
"""