Source code for stable_datasets.images.patch_camelyon

"""PatchCamelyon dataset builder stub."""

from stable_datasets.schema import DatasetInfo, DatasetSource, Version
from stable_datasets.utils import BaseDatasetBuilder


[docs] class PatchCamelyon(BaseDatasetBuilder): VERSION = Version("0.0.0") SOURCE = DatasetSource( homepage="https://github.com/basveeling/pcam", citation="TBD", assets={}, ) def _info(self) -> DatasetInfo: # pragma: no cover raise NotImplementedError("PatchCamelyon builder not implemented yet.") def _split_generators(self): # pragma: no cover raise NotImplementedError("PatchCamelyon builder not implemented yet.") def _generate_examples(self, **kwargs): # pragma: no cover raise NotImplementedError("PatchCamelyon builder not implemented yet.")