ssl
TwoAugmentationDataset(dataset, transform, strategy=AugmentationStrategy.SAME_IMAGE)
¶
Bases: Dataset
Two Image Augmentation Dataset for using in self-supervised learning.
Parameters:
-
dataset
(
Dataset
) –A torch Dataset object
-
transform
(
Compose | tuple[Compose, Compose]
) –albumentation transformations for each image. If you use single transformation, it will be applied to both images. If you use tuple, it will be applied to first image and second image separately.
-
strategy
(
AugmentationStrategy
, default:SAME_IMAGE
) –Defaults to AugmentationStrategy.SAME_IMAGE.
Source code in quadra/datasets/ssl.py
30 31 32 33 34 35 36 37 38 39 40 |
|
TwoSetAugmentationDataset(dataset, global_transforms, local_transform, num_local_transforms)
¶
Bases: Dataset
Two Set Augmentation Dataset for using in self-supervised learning (DINO).
Parameters:
-
dataset
(
Dataset
) –Base dataset
-
global_transforms
(
tuple[Compose, Compose]
) –Global transformations for each image.
-
local_transform
(
Compose
) –Local transformations for each image.
-
num_local_transforms
(
int
) –Number of local transformations to apply. In total you will have two + num_local_transforms transformations for each image. First element of the array will always return the original image.
Example
images[0] = global_transform0 images[1] = global_transform1 images[2:] = local_transform(s)(original_image)
Source code in quadra/datasets/ssl.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
|