-
-
Notifications
You must be signed in to change notification settings - Fork 17.2k
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
@glenn-jocher
How should I use this MixConv2d method? I did an experiment and replaced Conv directly with the MixConv2d method, and found that it couldn't run:
backbone:
# [from, number, module, args]
[[-1, 1, Conv, [64, 6, 2, 2]], # 0-P1/2
[-1, 1, MixConv2d, [128, 3, 2]], # 1-P2/4
[-1, 3, C3, [128]],
[-1, 1, MixConv2d, [256, 3, 2]], # 3-P3/8
[-1, 6, C3, [256]],
[-1, 1, MixConv2d, [512, 3, 2]], # 5-P4/16
[-1, 9, C3, [512]],
[-1, 1, MixConv2d, [1024, 3, 2]], # 7-P5/32
[-1, 3, C3, [1024]],
[-1, 1, SPPF, [1024, 5]], # 9
]
I found that the problem with this k
, how do I set this k
?
Line 53 in ed887b5
groups = len(k) |
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested