-
Hello! In the spleen_segmentation_3d_visualization_basic.ipynb tutorial in one part it says: "Here we use several transforms to augment the dataset". The Is My question is: Does it really increase the data? It seems to me that it just applies the transformations but doesn't keep a copy of the data or copy with different transformations. I am wrong? For example, during training I would like original_image How can I do this? Is it possible to have different |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @pauljhin, random transforms will generate different images randomly for each epoch so it can augment the dataset. If you want images with random rotation or random flip, you can use transforms such as |
Beta Was this translation helpful? Give feedback.
Hi @pauljhin, random transforms will generate different images randomly for each epoch so it can augment the dataset. If you want images with random rotation or random flip, you can use transforms such as
RandFlip
,RandRotate
,RandGaussianSmooth
.Hope it can help you, thanks!