Skip to content
Snippets Groups Projects
Commit c5ece882 authored by leufen1's avatar leufen1
Browse files

csv file is now created only when results are available

parent a52c3f67
No related branches found
No related tags found
8 merge requests!353add developments to release v1.5.0,!352Resolve "release v1.5.0",!351Lukas issue337 bug ci pipeline fails for docs,!350Resolve "upgrade code to TensorFlow V2",!343Update wrf with develop,!342Include sample-uncertainty to wrf workflow,!334Resolve "BUGFIX: calculate bootstraps",!259Draft: Resolve "WRF-Datahandler should inherit from SingleStationDatahandler"
Pipeline #80187 passed
...@@ -110,6 +110,8 @@ class PostProcessing(RunEnvironment): ...@@ -110,6 +110,8 @@ class PostProcessing(RunEnvironment):
bootstrap_type = self.data_store.get("bootstrap_type", "postprocessing") bootstrap_type = self.data_store.get("bootstrap_type", "postprocessing")
self.bootstrap_postprocessing(create_new_bootstraps, bootstrap_type=bootstrap_type, self.bootstrap_postprocessing(create_new_bootstraps, bootstrap_type=bootstrap_type,
bootstrap_method=bootstrap_method) bootstrap_method=bootstrap_method)
if self.bootstrap_skill_scores is not None:
self.report_bootstrap_results(self.bootstrap_skill_scores)
# skill scores and error metrics # skill scores and error metrics
with TimeTracking(name="calculate skill scores"): with TimeTracking(name="calculate skill scores"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment