I've tried to search the answer in the documentation, the code and here but I had no luck. I'd like to know what is the final number of images that are generated by the data augmentation using the object detection API in Tensorflow. For the sake of clarity I'd put an example: let's say that I have a dataset with 2 classes, each one of then with 50 images originally. Then I apply this config:
data_augmentation_options {
ssd_random_crop {
}
}
data_augmentation_options {
random_rgb_to_gray {
}
}
data_augmentation_options {
random_distort_color {
}
}
data_augmentation_options {
ssd_random_crop_pad_fixed_aspect_ratio {
}
}
How can I know the final number of images generated to train my model? (if there is a way). BTW, I'm using model_main.py to train my model.
Thanks in advance.