dacapo.experiments.datasplits.datasets.dummy_dataset_config =========================================================== .. py:module:: dacapo.experiments.datasplits.datasets.dummy_dataset_config Classes ------- .. autoapisummary:: dacapo.experiments.datasplits.datasets.dummy_dataset_config.DummyDatasetConfig Module Contents --------------- .. py:class:: DummyDatasetConfig A dummy configuration class for test datasets. .. attribute:: dataset_type Clearly mentions the type of dataset .. attribute:: raw_config This attribute holds the configurations related to dataset arrays. .. method:: verify A dummy verification method for testing purposes, always returns False and a message. .. rubric:: Notes This class is used to create a configuration object for the dummy dataset. .. py:attribute:: dataset_type .. py:attribute:: raw_config :type: dacapo.experiments.datasplits.datasets.arrays.ArrayConfig .. py:method:: verify() -> Tuple[bool, str] A dummy method that always indicates the dataset config is not valid. :returns: A tuple of False and a message indicating the invalidity. :raises NotImplementedError: If the method is not implemented in the derived class. .. rubric:: Examples >>> dataset_config = DummyDatasetConfig(raw_config=DummyArrayConfig(name="dummy_array")) >>> dataset_config.verify() (False, "This is a DummyDatasetConfig and is never valid") .. rubric:: Notes This method is used to validate the configuration of the dataset.