dataset_handelr, which applies usefulll functions for splitting up placements from different datasets
Parameters:
-
datasets
(list of strings)
–
each string should be a valid key in the
Source code in reskit/csp/workflows/dataset_handler.py
| def __init__(self, datasets) -> None:
"""dataset_handelr, which applies usefulll functions for splitting up placements from different datasets
Parameters
----------
datasets : list of strings
each string should be a valid key in the
"""
assert isinstance(datasets, list)
self.datasets = datasets
|