dacapo.experiments.datasplits.keys
Submodules
Classes
A unique enumeration representing different types of array keys |
|
A unique enumeration representing different types of graph keys |
|
Represent a base class for various types of keys in Dacapo library. |
Package Contents
- class dacapo.experiments.datasplits.keys.ArrayKey
A unique enumeration representing different types of array keys
- RAW
str The raw data key.
- GT
str The ground truth data key.
- MASK
str The data mask key.
- NON_EMPTY
str The data key for non-empty mask.
- __str__()
Return the string representation of the key.
Notes
This class is a base class and should not be instantiated.
- RAW = 'raw'
- GT = 'gt'
- MASK = 'mask'
- NON_EMPTY = 'non_empty_mask'
- class dacapo.experiments.datasplits.keys.GraphKey
A unique enumeration representing different types of graph keys
- SPECIFIED_LOCATIONS
str The key for specified locations in the graph.
- __str__()
Return the string representation of the key.
Notes
This class is a base class and should not be instantiated.
- SPECIFIED_LOCATIONS = 'specified_locations'
- class dacapo.experiments.datasplits.keys.DataKey
Represent a base class for various types of keys in Dacapo library.
- RAW
str The raw data key.
- GT
str The ground truth data key.
- MASK
str The data mask key.
- NON_EMPTY
str The data key for non-empty mask.
- SPECIFIED_LOCATIONS
str The key for specified locations in the graph.
- __str__()
Return the string representation of the key.
Notes
This class is a base class and should not be instantiated.