epitome.constants.Dataset

class epitome.constants.Dataset

Enumeration determining train, valid, test or runtime.

__init__()

Initialize self. See help(type(self)) for accurate signature.

Attributes

ALL

All mode: Specifies that data should not be divided by train, valid, and test.

RUNTIME

Runtime mode: Allows a new cell type to be predicted on.

TEST

Test mode: Disables subsampling of 0s.

TRAIN

Training mode: Allows subsampling of 0s.

TRAIN_VALID

TRAIN_VALID mode: Specifies that only a validation chr from train should be used.

VALID

Validation mode: Allows validation on training cell types.