ksuit.data.base.wrapper ======================= .. py:module:: ksuit.data.base.wrapper Classes ------- .. autoapisummary:: ksuit.data.base.wrapper.DatasetWrapper Module Contents --------------- .. py:class:: DatasetWrapper(dataset) Wrapper around arbitrary ksuit.data.Dataset instances to generically change something about the dataset. For example: - Create a subset of the dataset (ksuit.data.Subset) - Define which properties/items to load from the dataset, i.e., which getitem_* methods to call (ksuit.data.ModeWrapper) What exactly is changed depends on the specific implementation of the DatasetWrapper child class. :param dataset: base dataset to be wrapped .. py:attribute:: dataset