From 72f2cb4d6b59d32a3feaa6f73c0a55982f10df9f Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Fri, 20 Mar 2020 13:47:38 +0100 Subject: [PATCH] Skill Scores is not a RunEnvironment inheritance anymore --- src/statistics.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/statistics.py b/src/statistics.py index 26b2be88..6510097f 100644 --- a/src/statistics.py +++ b/src/statistics.py @@ -103,10 +103,9 @@ def mean_squared_error(a, b): return np.square(a - b).mean() -class SkillScores(RunEnvironment): +class SkillScores: def __init__(self, internal_data): - super().__init__() self.internal_data = internal_data def skill_scores(self, window_lead_time): -- GitLab