vonclites / squeezenet

Tensorflow implementation of SqueezeNet.
MIT License
129 stars 63 forks source link

Does the training script need images only of size 224x224 ? #7

Open muthiyanbhushan opened 6 years ago

muthiyanbhushan commented 6 years ago

Hello @vonclites,

I want to know if this script needs only image size of 224x224 while creating a tfrecord file? Or will it work for any size image? Please, let me know

Thanks

vonclites commented 6 years ago

It does not require images of size 224x224. The images will be resized according to the given 'target_image_size' parameter. I believe the original paper used images of size 224x224.

muthiyanbhushan commented 6 years ago

Thanks.