Replies: 1 comment
-
前面说是used_layer只用了3,5,7后面又成了1,2,3,5,7感觉好矛盾啊 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
mobile_v2.py文件64行
class MobileNetV2(nn.Sequential):
def init(self, width_mult=1.0, used_layers=[3, 5, 7]):
这里的used_layers请问下是什么意思啊?
还有后面的
p0, p1, p2, p3, p4 = [outputs[i] for i in [1, 2, 3, 5, 7]]
out = [outputs[i] for i in self.used_layers]
这两行代码都是什么意思啊,不太理解。
Beta Was this translation helpful? Give feedback.
All reactions