You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
first of all, many thanks for your work! It helps a lot for me!
My question is that how could I use your pretrained mobilenetv2_0.75 model? I looked into the model, the channels change from [32 16 24 32 64 96 160 320] to [24 16 24 24 48 72 120 240]. Does this mean as long as I change the input_channel to 24
and
self.cfgs = [
# t, c, n, s
[1, 16, 1, 1],
[6, 24, 2, 2],
[6, 32, 3, 2],
[6, 64, 4, 2],
[6, 96, 3, 1],
[6, 160, 3, 2],
[6, 320, 1, 1],
]
to
self.cfgs = [
# t, c, n, s
[1, 16, 1, 1],
[6, 24, 2, 2],
[6, 24, 3, 2],
[6, 48, 4, 2],
[6, 72, 3, 1],
[6, 120, 3, 2],
[6, 240, 1, 1],
]
everything is ok?
The text was updated successfully, but these errors were encountered:
hi, here!
first of all, many thanks for your work! It helps a lot for me!
My question is that how could I use your pretrained mobilenetv2_0.75 model? I looked into the model, the channels change from [32 16 24 32 64 96 160 320] to [24 16 24 24 48 72 120 240]. Does this mean as long as I change the input_channel to 24
and
self.cfgs = [
# t, c, n, s
[1, 16, 1, 1],
[6, 24, 2, 2],
[6, 32, 3, 2],
[6, 64, 4, 2],
[6, 96, 3, 1],
[6, 160, 3, 2],
[6, 320, 1, 1],
]
to
self.cfgs = [
# t, c, n, s
[1, 16, 1, 1],
[6, 24, 2, 2],
[6, 24, 3, 2],
[6, 48, 4, 2],
[6, 72, 3, 1],
[6, 120, 3, 2],
[6, 240, 1, 1],
]
everything is ok?
The text was updated successfully, but these errors were encountered: