-
Notifications
You must be signed in to change notification settings - Fork 867
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
ViT-S and drop_path_rate #160
Comments
Sorry for the late reply; if this problem persists, does this PR fix it for you by any chance ? #195 |
Yes, that worked for me, thank you! Except I had to add back the |
Hi I have the same issue with drop_path_rate>0 for VIT-SMALL, can you let me know what is the reason and which commit you fix this issue? I am using the latest version of repo so far and issue still exist apperantly |
same here! |
Hi,
I'm trying to train DINOv2 with the ViT-S backbone. I've noticed that the model training crashes if
drop_path_rate
> 0. In particular, I get the following errorwith the traceback going all the way to line 173
As recommended in issue #108, one need to set
drop_path_rate = 0
when using the ViT-S backbone. What is the reason for this behaviour? In the original DINO, thedrop_path_rate = 0.1
for both ViT-S and ViT-B.The text was updated successfully, but these errors were encountered: