dacapo.experiments.tasks.task_config ==================================== .. py:module:: dacapo.experiments.tasks.task_config Classes ------- .. autoapisummary:: dacapo.experiments.tasks.task_config.TaskConfig Module Contents --------------- .. py:class:: TaskConfig Base class for task configurations. Each subclass of a `Task` should have a corresponding config class derived from `TaskConfig`. .. attribute:: name A unique name for this task. This will be saved so you and others can find and reuse this task. Keep it short and avoid special characters. .. method:: verify(self) -> Tuple[bool, str] This method verifies the TaskConfig object. .. rubric:: Notes This is a base class for all task configurations. It is not meant to be used directly. .. py:attribute:: name :type: str .. py:method:: verify() -> Tuple[bool, str] Check whether this is a valid Task :returns: A tuple containing a boolean value indicating whether the TaskConfig object is valid and a string containing the reason why the object is invalid. :rtype: Tuple[bool, str] :raises NotImplementedError: This method is not implemented. .. rubric:: Examples >>> valid, reason = task_config.verify()