Skip to content
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

efficientnetv2-bn parameters for progressive learning #1203

Open
bahejl opened this issue Nov 3, 2023 · 0 comments
Open

efficientnetv2-bn parameters for progressive learning #1203

bahejl opened this issue Nov 3, 2023 · 0 comments

Comments

@bahejl
Copy link

bahejl commented Nov 3, 2023

I would like to train one of the efficientnetv2-bn networks on a custom dataset, and I noticed the following in effnetv2_configs.py line 202:

# For fair comparison to EfficientNetV1, using the same scaling and autoaug.
'efficientnetv2-b0':  # 78.7% @ 7M params
    (v2_base_block, 1.0, 1.0, 192, 224, 0.2, 0, 0, 'effnetv1_autoaug'),
'efficientnetv2-b1':  # 79.8% @ 8M params
    (v2_base_block, 1.0, 1.1, 192, 240, 0.2, 0, 0, 'effnetv1_autoaug'),
'efficientnetv2-b2':  # 80.5% @ 10M params
    (v2_base_block, 1.1, 1.2, 208, 260, 0.3, 0, 0, 'effnetv1_autoaug'),
'efficientnetv2-b3':  # 82.1% @ 14M params
    (v2_base_block, 1.2, 1.4, 240, 300, 0.3, 0, 0, 'effnetv1_autoaug'),

I would really like to use the progressive learning mentioned in the paper instead of the augmentation used in V1. Would I just change the aug field to 'randaug' or are additional changes needed?

@bahejl bahejl changed the title efficientnetv2-bn parameters efficientnetv2-bn parameters for progressive learning Nov 3, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant