Fix RoPE to use width patch size for width dimension and minor refactoring in DINOv3 - #167
Fix RoPE to use width patch size for width dimension and minor refactoring in DINOv3#167Moriyuki-S wants to merge 1 commit into
Conversation
Summary of ChangesHello @Moriyuki-S, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical bug in the RoPE calculation for the Dinov3ViT model, specifically concerning how patch dimensions are handled. By correcting the indexing to use the width component of Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request correctly fixes the RoPE calculation to support non-square patch sizes by using patch_size[1] for the width dimension. The addition of a regression test for non-square patches is also a great way to ensure this functionality remains correct. I've added a couple of suggestions to improve code clarity and maintainability by removing unused code and avoiding magic numbers in the new test.
| self.num_patches_h = config.image_size // config.patch_size[0] | ||
| self.num_patches_w = config.image_size // config.patch_size[0] | ||
| self.num_patches_w = config.image_size // config.patch_size[1] |
There was a problem hiding this comment.
ccc4b6c to
151b3c7
Compare
|
@Moriyuki-S Thanks for the changes, btw the model is gated, hence we had the colab link. Also, once you are done, do check if final atol is further reduced, later combine all commits into a single commit. |
This PR corrects the RoPE calculation to use
patch_size[1](width) instead ofpatch_size[0](height) for the width dimension.Changes
Dinov3ViTRopePositionEmbeddingto usepatch_size[1]for width calculation.Added a regression test for non-square patch sizes.
Tightened config typing:
hidden_act: Literal["gelu", "silu"](instead ofstr).Fixed
LayerScaleparam multiplication to explicitly read the param value:x * self.lambda1[...](instead ofx * self.lambda1).This ensures the code is semantically correct and supports non-square patches properly.
Checklist
run_model.pyfor model usage,test_outputs.pyand/ormodel_validation_colab.ipynbfor quality).