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

What is it? #229

Open
ksv87 opened this issue Aug 27, 2024 · 1 comment
Open

What is it? #229

ksv87 opened this issue Aug 27, 2024 · 1 comment

Comments

@ksv87
Copy link

ksv87 commented Aug 27, 2024

What are these levels?

self.extras = nn.ModuleList([
InvertedResidual(960, _make_divisible(960 * 0.2, 8), 512, 3, 2, True, True),
InvertedResidual(512, _make_divisible(512 * 0.25, 8), 256, 3, 2, True, True),
InvertedResidual(256, _make_divisible(256 * 0.5, 8), 256, 3, 2, True, True),
InvertedResidual(256, _make_divisible(256 * 0.25, 8), 64, 3, 2, True, True),
])

and these

self.extras = nn.ModuleList([
InvertedResidual(1280, 512, 2, 0.2),
InvertedResidual(512, 256, 2, 0.25),
InvertedResidual(256, 256, 2, 0.5),
InvertedResidual(256, 64, 2, 0.25)
])

I planning integrate mobilenet v4 from https://github.com/jaiwei98/MobileNetV4-pytorch/blob/main/mobilenet/mobilenetv4.py or https://huggingface.co/blog/rwightman/mobilenetv4

Should I add extra levels like in v3? Replacing InvertedResidual with UniversalInvertedResidual

@ksv87
Copy link
Author

ksv87 commented Aug 27, 2024

@lufficc can you tell me, please?

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