Skip to content

do random resize on batched images #239

New issue

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

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

isaacrob-roboflow
Copy link
Collaborator

Description

Right now we randomly resize each image independently and then pad the batch of images to have the same dimensions as the largest image. This means we waste compute and also that with probability ~1 the model doesn't see images of the target resolution without padding.

This PR moves the random resize to be directly in front of the forward pass. This gives slightly higher accuracy and slightly higher throughput.

It also fixes a bug where the expanded scales argument was ignored for Roboflow datasets. This should give slightly better results but slightly lower throughput.

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • This change requires a documentation update

How has this change been tested, please provide a testcase or example of how you tested the change?

Tested locally via a training script.

Any specific deployment considerations

For example, documentation changes, usability, usage/costs, secrets, etc.

Docs

  • Docs updated? What were the changes:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant