configs
AdvancedConfig #
Bases: BaseModel
Advanced configuration class.
Source code in src/careamics_napari/careamics_utils/configs.py
rotations = True class-attribute instance-attribute #
Whether to apply rotations during augmentation.
x_flip = True class-attribute instance-attribute #
Whether to apply flipping along the X dimension during augmentation.
y_flip = True class-attribute instance-attribute #
Whether to apply flipping along the Y dimension during augmentation.
BaseConfig #
Bases: Configuration
Base configuration class.
Source code in src/careamics_napari/careamics_utils/configs.py
is_3D = False class-attribute instance-attribute #
Whether the data is 3D.
needs_gt = False class-attribute instance-attribute #
Whether the algorithm requires ground truth (for training).
pred_batch_size = 1 class-attribute instance-attribute #
Batch size for prediction.
tile_overlap_xy = 48 class-attribute instance-attribute #
Overlap between the tiles along the X and Y dimensions.
tile_overlap_z = 4 class-attribute instance-attribute #
Overlap between the tiles along the Z dimension.
tile_size = None class-attribute instance-attribute #
Size of the tiles to predict on.
use_channels = False class-attribute instance-attribute #
Whether the data has channels.
val_minimum_split = 1 class-attribute instance-attribute #
Minimum number of patches or images in the validation set.
val_percentage = 0.1 class-attribute instance-attribute #
Percentage of the training data used for validation.
work_dir = HOME class-attribute instance-attribute #
Directory where the checkpoints and logs are saved.