We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
all_images
JPEG images don't have to be 100% quality in storage.
The models only train on images of sizes 224, 299, 384 etc...
So could potentially resize all images to only be at max 1000x1000?
Go through images and downsize if:
Benefits:
The text was updated successfully, but these errors were encountered:
Doesn't look like I need to do this...
Experiments show that it doesn't change much.
Without resizing:
Min load time: 6.175041198730469e-05 Max load time: 0.0051898956298828125 Mean load time: 7.927996739415816e-05 Median load time: 7.2479248046875e-05
With resizing (all images to (600, 600)):
Min load time: 6.628036499023438e-05 Max load time: 0.0004761219024658203 Mean load time: 7.431405741298758e-05 Median load time: 7.224082946777344e-05
Results:
Original images mean load time: 7.927996739415816e-05 Resized images mean load time: 7.431405741298758e-05 Resized images load time is 1.0668232923089287 times faster than original images
Sorry, something went wrong.
No branches or pull requests
JPEG images don't have to be 100% quality in storage.
The models only train on images of sizes 224, 299, 384 etc...
So could potentially resize all images to only be at max 1000x1000?
Go through images and downsize if:
Benefits:
The text was updated successfully, but these errors were encountered: