mage
mage copied to clipboard
Are cls_token and pos_embed not used in models_mage.py?
https://github.com/LTH14/mage/blob/main/models_mage.py#L188-L189
cls_token and pos_embed are defined here but they don't seem to be used?
Yes, they are deprecated here.
Yes, they are deprecated here.
why pos_embed is not used? I see it is used in MAE.
We use a BertEmb which include its own positional embedding https://github.com/LTH14/mage/blob/main/models_mage.py#L96