dacapo.experiments.datasplits.datasets.raw_gt_dataset

Classes

RawGTDataset

A dataset that contains raw and ground truth data. Optionally, it can also contain a mask.

Module Contents

class dacapo.experiments.datasplits.datasets.raw_gt_dataset.RawGTDataset(dataset_config)

A dataset that contains raw and ground truth data. Optionally, it can also contain a mask.

raw

Array The raw data.

gt

Array The ground truth data.

mask

Optional[Array] The mask data.

sample_points

Optional[List[Coordinate]] The sample points in the graph.

weight

Optional[float] The weight of the dataset.

__init__(dataset_config)

Initialize the dataset.

Notes

This class is a base class and should not be instantiated.

raw: dacapo.experiments.datasplits.datasets.arrays.Array
gt: dacapo.experiments.datasplits.datasets.arrays.Array
mask: dacapo.experiments.datasplits.datasets.arrays.Array | None
sample_points: List[funlib.geometry.Coordinate] | None
name
weight