dacapo.experiments.datasplits.datasets.raw_gt_dataset ===================================================== .. py:module:: dacapo.experiments.datasplits.datasets.raw_gt_dataset Classes ------- .. autoapisummary:: dacapo.experiments.datasplits.datasets.raw_gt_dataset.RawGTDataset Module Contents --------------- .. py:class:: RawGTDataset(dataset_config) A dataset that contains raw and ground truth data. Optionally, it can also contain a mask. .. attribute:: raw Array The raw data. .. attribute:: gt Array The ground truth data. .. attribute:: mask Optional[Array] The mask data. .. attribute:: sample_points Optional[List[Coordinate]] The sample points in the graph. .. attribute:: weight Optional[float] The weight of the dataset. .. method:: __init__(dataset_config) Initialize the dataset. .. rubric:: Notes This class is a base class and should not be instantiated. .. py:attribute:: raw :type: dacapo.experiments.datasplits.datasets.arrays.Array .. py:attribute:: gt :type: dacapo.experiments.datasplits.datasets.arrays.Array .. py:attribute:: mask :type: Optional[dacapo.experiments.datasplits.datasets.arrays.Array] .. py:attribute:: sample_points :type: Optional[List[funlib.geometry.Coordinate]] .. py:attribute:: name .. py:attribute:: weight