sail-sg / volo

VOLO: Vision Outlooker for Visual Recognition

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Token Labeling

monney opened this issue · comments

Hi, thank you for the paper.

Do you have any numbers for how the networks perform without token labeling, only using MixToken and other augmentations?

Hi, token labeling can improve volo_d1 by 0.4% (from 83.8% to 84.2%). For larger volo models, token labeling can achieve improvement from 0.0 to 0.4%.

Thank you, I think these numbers are probably worth adding to the paper as well for context.

Hi, token labeling can improve volo_d1 by 0.4% (from 83.8% to 84.2%). For larger volo models, token labeling can achieve improvement from 0.0 to 0.4%.

Could you please also put a copy of token labeling data and pretrained models on Baidu Netdisk?

Hi,thank you for sharing this work. If I want to use VOLO to finetune on my own dataset, how can I create my own token labeling?

Hi @Ree1s , You can refer to zihangJiang/TokenLabeling#7 (comment) for generating token label data for your own dataset.

Hi,thank you for sharing this work. If I want to use VOLO to finetune on my own dataset, how can I create my own token labeling?

If you only want to 'finetune' VOLO on your own dataset, one option is to directly use the 'class token' or mean the feature tokens without using token labeling, thus you don't need to generate your own token labels.

Hi @Ree1s , You can refer to zihangJiang/TokenLabeling#7 (comment) for generating token label data for your own dataset.

Thanks, and I will try on my dataset through this way mentioned.

Hi,thank you for sharing this work. If I want to use VOLO to finetune on my own dataset, how can I create my own token labeling?

If you only want to 'finetune' VOLO on your own dataset, one option is to directly use the 'class token' or mean the feature tokens without using token labeling, thus you don't need to generate your own token labels.

I'll have a try. Thanks a lot!

Hi,thank you for sharing this work. If I want to use VOLO to finetune on my own dataset, how can I create my own token labeling?

If you only want to 'finetune' VOLO on your own dataset, one option is to directly use the 'class token' or mean the feature tokens without using token labeling, thus you don't need to generate your own token labels.

Hi, when you say class token, do you mean configure return_mean to True the feeding parameters of VOLO?