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

refac repr of data handler, joined ";" can cause problems when data are used as competitor

parent 24f19408
No related branches found
No related tags found
6 merge requests!353add developments to release v1.5.0,!352Resolve "release v1.5.0",!343Update wrf with develop,!342Include sample-uncertainty to wrf workflow,!331Resolve "REFAC: do not stop if filter plots fail",!259Draft: Resolve "WRF-Datahandler should inherit from SingleStationDatahandler"
Pipeline #77672 passed
......@@ -336,6 +336,7 @@ class DataHandlerMixedSamplingWithClimateFirFilter(DataHandlerClimateFirFilter):
else:
return super().get_X_original()
class DataHandlerSeparationOfScalesSingleStation(DataHandlerMixedSamplingWithKzFilterSingleStation):
"""
Data handler using mixed sampling for input and target. Inputs are temporal filtered and depending on the
......
......@@ -134,7 +134,7 @@ class DefaultDataHandler(AbstractDataHandler):
return X, Y
def __repr__(self):
return ";".join(list(map(lambda x: str(x), self._collection)))
return str(self._collection[0])
def get_X_original(self):
X = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment