Skip to content
Snippets Groups Projects
Commit a559c5e9 authored by lukas leufen's avatar lukas leufen
Browse files

bugfix, uncommented statements (was commented for development)

parent 35094b11
No related branches found
No related tags found
1 merge request!37include new development
Pipeline #29289 passed
...@@ -21,6 +21,8 @@ import cartopy.feature as cfeature ...@@ -21,6 +21,8 @@ import cartopy.feature as cfeature
from matplotlib.backends.backend_pdf import PdfPages from matplotlib.backends.backend_pdf import PdfPages
from typing import Dict, List, Tuple from typing import Dict, List, Tuple
from pandas.plotting import register_matplotlib_converters
register_matplotlib_converters()
logging.getLogger('matplotlib').setLevel(logging.WARNING) logging.getLogger('matplotlib').setLevel(logging.WARNING)
......
...@@ -46,7 +46,7 @@ class PostProcessing(RunEnvironment): ...@@ -46,7 +46,7 @@ class PostProcessing(RunEnvironment):
self.make_prediction() self.make_prediction()
logging.info("take a look on the next reported time measure. If this increases a lot, one should think to " logging.info("take a look on the next reported time measure. If this increases a lot, one should think to "
"skip make_prediction() whenever it is possible to save time.") "skip make_prediction() whenever it is possible to save time.")
# self.skill_scores = self.calculate_skill_scores() self.skill_scores = self.calculate_skill_scores()
self.plot() self.plot()
def _load_model(self): def _load_model(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment