I am using DeepLabv3+ and I am running some tests. For my first run I used an output_stride=16
and atrous_rates=[6, 12, 18]
and in the 2nd run I used output_stride=8
and atrous_rates=[12,24, 36]
. Then I used tensorboard to see the results and I could notice that the heatmaps look larger and one "unit" is 4x bigger than the run with output_stride=16
.
output_stride=16
output_stride=8
I would like to know what is the reason behing this behaviour and the consequences on my mIOU metric.
regards