diff --git a/mlair/configuration/defaults.py b/mlair/configuration/defaults.py index d0b3592905c32a4c7af875014532a5539805dd3a..3083e582791727b23ef3e14bb997cd411e11166f 100644 --- a/mlair/configuration/defaults.py +++ b/mlair/configuration/defaults.py @@ -61,7 +61,8 @@ DEFAULT_FEATURE_IMPORTANCE_BOOTSTRAP_METHOD = "shuffle" DEFAULT_PLOT_LIST = ["PlotMonthlySummary", "PlotStationMap", "PlotClimatologicalSkillScore", "PlotTimeSeries", "PlotCompetitiveSkillScore", "PlotFeatureImportanceSkillScore", "PlotConditionalQuantiles", "PlotAvailability", "PlotAvailabilityHistogram", "PlotDataHistogram", "PlotPeriodogram", - "PlotSampleUncertaintyFromBootstrap"] + "PlotSampleUncertaintyFromBootstrap", "PlotErrorMetrics", "PlotDataMonthlyDistribution", + "PlotTimeEvolutionMetric", "PlotSeasonalMSEStack", "PlotErrorsOnMap"] DEFAULT_SAMPLING = "daily" DEFAULT_DATA_ORIGIN = {"cloudcover": "REA", "humidity": "REA", "pblheight": "REA", "press": "REA", "relhum": "REA", "temp": "REA", "totprecip": "REA", "u": "REA", "v": "REA", "no": "", "no2": "", "o3": "", diff --git a/mlair/run_modules/post_processing.py b/mlair/run_modules/post_processing.py index 4e7225af8ad840f545d35714c21d43c4dcd1317b..1d32c570c070e90d67562e9deddfc62f8e972322 100644 --- a/mlair/run_modules/post_processing.py +++ b/mlair/run_modules/post_processing.py @@ -756,10 +756,6 @@ class PostProcessing(RunEnvironment): logging.error(f"Could not create plot PlotErrorsOnMap due to the following error: {e}" f"\n{sys.exc_info()[0]}\n{sys.exc_info()[1]}\n{sys.exc_info()[2]}") - - - - @TimeTrackingWrapper def calculate_test_score(self): """Evaluate test score of model and save locally.""" diff --git a/test/test_configuration/test_defaults.py b/test/test_configuration/test_defaults.py index b46590290eff09ac98d549c7d38010eb5506d09c..4234b7881d2c28f0a5caef3bf428efe8403412e4 100644 --- a/test/test_configuration/test_defaults.py +++ b/test/test_configuration/test_defaults.py @@ -75,4 +75,6 @@ class TestAllDefaults: assert DEFAULT_PLOT_LIST == ["PlotMonthlySummary", "PlotStationMap", "PlotClimatologicalSkillScore", "PlotTimeSeries", "PlotCompetitiveSkillScore", "PlotFeatureImportanceSkillScore", "PlotConditionalQuantiles", "PlotAvailability", "PlotAvailabilityHistogram", - "PlotDataHistogram", "PlotPeriodogram", "PlotSampleUncertaintyFromBootstrap"] + "PlotDataHistogram", "PlotPeriodogram", "PlotSampleUncertaintyFromBootstrap", + "PlotErrorMetrics", "PlotDataMonthlyDistribution", "PlotTimeEvolutionMetric", + "PlotSeasonalMSEStack", "PlotErrorsOnMap"]