remove unused function

This commit is contained in:
robcaulk 2022-11-24 17:53:26 +01:00
parent 8f1a8c752b
commit 44b042ba51

View File

@ -18,12 +18,6 @@ class Actions(Enum):
Short_exit = 4
def mean_over_std(x):
std = np.std(x, ddof=1)
mean = np.mean(x)
return mean / std if std > 0 else 0
class Base5ActionRLEnv(BaseEnvironment):
"""
Base class for a 5 action environment