SlimConv
SlimConv copied to clipboard
How to replace DepthConv3*3 ?
I notice that you have used SlimConv in MobileNet V2. But I confuse that how to replace DepthConv3*3 with SlimConv. Looking forward to your reply.
I don't know how to let k=8/3
- Modify line29-30: reduce_1 = 4 reduce_2 = 8;
- Modify line58-62: fs1 = torch.split(out1, c // 4, 1) fs2 = torch.split(out2, c // 4, 1) fs1 = fs1[0] + fs1[1] + fs1[2] + fs1[3] fs2 = fs2[0] + fs2[1] + fs2[2] + fs2[3].
Thanks for your help!