Skip to content

What is it? #229

@ksv87

Description

@ksv87

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions