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
We have LAYER_IDXS = [3, 8, 15, 22] for style layers and CONTENT_INDEX = 1 for the content layer. To which layers in the network architecture do these values correspond?
In the MobileNetV2 paper it says:
The architecture of MobileNetV2 contains the
initial fully convolution layer with 32 filters, followed
by 19 residual bottleneck layers
I'm having trouble seeing to which layers in your code these indices point, as compared to the Table 2 in the MobileNetV2 paper you cited (https://arxiv.org/pdf/1801.04381.pdf).
The text was updated successfully, but these errors were encountered:
We have
LAYER_IDXS = [3, 8, 15, 22]
for style layers andCONTENT_INDEX = 1
for the content layer. To which layers in the network architecture do these values correspond?In the MobileNetV2 paper it says:
I'm having trouble seeing to which layers in your code these indices point, as compared to the Table 2 in the MobileNetV2 paper you cited (https://arxiv.org/pdf/1801.04381.pdf).
The text was updated successfully, but these errors were encountered: