I can see that augmentations were applied but i can't see the resulted size of the training set. How can I check it? It's important because when calculating epochs, the dataset size after augmentation should be considered.
When I train a model using DefaultTrainer, there are few augmentations that are apllied by default. I get the following log prints:
[d2.data.datasets.coco]: Loaded 9034 images in COCO format from Datasets/full_train_coco.json
[d2.data.build]: Removed 6216 images with no usable annotations. 2818 images left.
[d2.data.dataset_mapper]: [DatasetMapper] Augmentations used in training: [ResizeShortestEdge(short_edge_length=(640, 672, 704, 736, 768, 800), max_size=1333, sample_style='choice'), RandomFlip()]
[d2.data.build]: Using training sampler TrainingSampler
[d2.data.common]: Serializing 2818 elements to byte tensors and concatenating them all ...