You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
Dino configuration contains the parameter named MLP_DIM which looks like being adjustable by the user. But actually, it is hard coded. See the line here
But it seems that the mlp_dim is not adjustable through the configuration. Apart from it, it also raises some confusion for the user who wants to change the size of mlp dimension.
Expected behavior:
To be specific, with the configuration
MODEL:
TRUNK:
NAME: vision_transformerVISION_TRANSFORMERS:
HIDDEN_DIM: 384MLP_DIM: 768# Not Used!
Instructions To Reproduce the Issue:
Dino
configuration contains the parameter namedMLP_DIM
which looks like being adjustable by the user. But actually, it is hard coded. See the line herevissl/vissl/models/trunks/vision_transformer.py
Lines 149 to 155 in 4ca0ae3
I wanted to adjust the
mlp_ratio
or size ofmlp_dim
through the configuration as I've met several OOM issues because of the huge dataset,But it seems that the mlp_dim is not adjustable through the configuration. Apart from it, it also raises some confusion for the user who wants to change the size of mlp dimension.
Expected behavior:
To be specific, with the configuration
mlp
is supposed to havebut actually it has
because of the pre-defined value
mlp_ratio=4.0
herevissl/vissl/models/trunks/vision_transformer.py
Line 262 in 4ca0ae3
The text was updated successfully, but these errors were encountered: