using different image size while using a pre trained model #849
Unanswered
Md-Sayeed-Khan
asked this question in
Q&A
Replies: 1 comment
-
By pre trained model from your point of view, I guess you are asking about transfer learning through pre saved model weights. If so, Resizing images isn't strictly necessary but is often done primarily to reduce image feature complexity and training time. Resizing ensures consistency with the dataset used to train the pretrained model. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When using a pretrained model, it's important that your custom data going into the model is prepared in the same way as the original training data that went into the model.
why is it important ?
i tried to use different image size while training and it worked good .
also while predicting on un seen images i did not resize to size which model was trained on , i passed directly an high resolution image and it worked fine
Beta Was this translation helpful? Give feedback.
All reactions