Skip to content
Snippets Groups Projects
Commit b36b9678 authored by Michael Langguth's avatar Michael Langguth
Browse files

Add call of plot_conditional_quantiles to main_visualize_postprocess.py.

parent e044a121
No related branches found
No related tags found
No related merge requests found
Pipeline #68769 passed
......@@ -774,9 +774,7 @@ class Postprocess(TrainModel):
# release some memory
Postprocess.clean_obj_attribute(self, "eval_metrics_ds")
cond_quantile_vars = ["{0}_{1}_fcst".format(self.vars_in[self.channel], self.model),
"{0}_ref".format(self.vars_in[self.channel])]
# the variables for conditional quantile plot
var_fcst = "{0}_{1}_fcst".format(self.vars_in[self.channel], self.model)
var_ref = "{0}_ref".format(self.vars_in[self.channel])
......@@ -1178,6 +1176,7 @@ def main():
postproc_instance.run()
postproc_instance.handle_eval_metrics()
postproc_instance.plot_example_forecasts(metric=args.eval_metrics[0], channel=args.channel)
postproc_instance.plot_conditional_quantiles()
if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment