denoiseg_datasets
DSB2018
#
Bases: PortfolioEntry
, NoisyObject
The 2018 Data Science Bowl dataset used by DenoiSeg.
The dataset is available in three different noise levels: N0, N10 and N20.
Attributes:
Name | Type | Description |
---|---|---|
portfolio (str) | Name of the portfolio to which the dataset belong. | noise_level (NoiseLevel): Noise level of the dataset. name (str): Name of the dataset. url (str): URL of the dataset. description (str): Description of the dataset. license (str): License of the dataset. citation (str): Citation to use when referring to the dataset. file_name (str): Name of the downloaded file. hash (str): SHA256 hash of the downloaded file. size (int): Size of the dataset in MB. tags (list[str]): List of tags associated to the dataset. is_zip (bool): Whether the dataset is a zip file. |
Source code in src/careamics_portfolio/denoiseg_datasets.py
__init__(noise_level=NoiseLevel.N0)
#
Initialize a DSB2018 instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
noise_level | NoiseLevel | Noise level of the dataset, by default NoiseLevel.N0 | N0 |
Source code in src/careamics_portfolio/denoiseg_datasets.py
MouseNuclei
#
Bases: PortfolioEntry
, NoisyObject
Mouse nuclei dataset used by DenoiSeg.
The dataset is available in three different noise levels: N0, N10 and N20.
Attributes:
Name | Type | Description |
---|---|---|
portfolio (str) | Name of the portfolio to which the dataset belong. | noise_level (NoiseLevel): Noise level of the dataset. name (str): Name of the dataset. url (str): URL of the dataset. description (str): Description of the dataset. license (str): License of the dataset. citation (str): Citation to use when referring to the dataset. file_name (str): Name of the downloaded file. hash (str): SHA256 hash of the downloaded file. size (int): Size of the dataset in MB. tags (list[str]): List of tags associated to the dataset. is_zip (bool): Whether the dataset is a zip file. |
Source code in src/careamics_portfolio/denoiseg_datasets.py
__init__(noise_level=NoiseLevel.N0)
#
Initialize a MouseNuclei instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
noise_level | NoiseLevel | Noise level of the dataset, by default NoiseLevel.N0 | N0 |
Source code in src/careamics_portfolio/denoiseg_datasets.py
NoiseLevel
#
Bases: str
, Enum
An IntEnum representing the noise level of a dataset.
N0 corresponds to the noise-free version of the dataset, N10 and N20 to images corrupted with Gaussian noise with zero-mean and standard deviations of 10 and 20, respectively.
Source code in src/careamics_portfolio/denoiseg_datasets.py
NoisyObject
#
A mixin class for datasets with different noise levels.
Attributes:
Name | Type | Description |
---|---|---|
noise_level (NoiseLevel) | Noise level of the dataset. | |
Source code in src/careamics_portfolio/denoiseg_datasets.py
noise_level
property
#
Noise level of the dataset.
SegFlywing
#
Bases: PortfolioEntry
, NoisyObject
Flywing dataset used by DenoiSeg.
The dataset is available in three different noise levels: N0, N10 and N20.
Attributes:
Name | Type | Description |
---|---|---|
portfolio (str) | Name of the portfolio to which the dataset belong. | noise_level (NoiseLevel): Noise level of the dataset. name (str): Name of the dataset. url (str): URL of the dataset. description (str): Description of the dataset. license (str): License of the dataset. citation (str): Citation to use when referring to the dataset. file_name (str): Name of the downloaded file. hash (str): SHA256 hash of the downloaded file. size (int): Size of the dataset in MB. tags (list[str]): List of tags associated to the dataset. is_zip (bool): Whether the dataset is a zip file. |
Source code in src/careamics_portfolio/denoiseg_datasets.py
__init__(noise_level=NoiseLevel.N0)
#
Initialize a Flywing instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
noise_level | NoiseLevel | Noise level of the dataset, by default NoiseLevel.N0 | N0 |