calmiLovesAI / Basic_CNNs_TensorFlow2

A tensorflow2 implementation of some basic CNNs(MobileNetV1/V2/V3, EfficientNet, ResNeXt, InceptionV4, InceptionResNetV1/V2, SENet, SqueezeNet, DenseNet, ShuffleNetV2, ResNet).
MIT License
526 stars 178 forks source link

Image shape #3

Closed wuyangdut closed 4 years ago

wuyangdut commented 4 years ago

why Input Image Size is the same? does it depend on my dataset?

calmiLovesAI commented 4 years ago

For a specific network, the input image size is a fixed value. During training, the program scales the width and height of the image in the dataset to this particular size and then feeds it into the network.