FasterNet icon indicating copy to clipboard operation
FasterNet copied to clipboard

[CVPR 2023] Code for PConv and FasterNet

Results 44 FasterNet issues
Sort by recently updated
recently updated
newest added

I bottleneck in rensnet to replace conv2 and conv3 with pconv, and I find that it does not run. Do you have any good suggestions about which parts of convolution...

Excellent work! I have a need for a ResNet18 network boost. Should I use FasterNet to replace Resnet18 directly or should I use Pconv to replace part of the convolution...

what device did you use in training, I use 512 per V100 16GB lead to an OOM error. but if I use a small batch, the loss go to NaN...

这样的配置文件怎么在pcconv里融合注意力机制呢,如题,可以给一个思路吗

我在YOLOv5中采用Pconv(输入通道是c)+conv1x1(输入通道c,输出通道2c)组合的方式替换conv3x3(输入通道是c、输出通道是2c),特征图尺度是没有改变的,测试后精度和速度均降低了;我想请问是需要采用Fasternet Block进行来替换conv3x3嘛?它的输入通道、输出通道该怎么设置呢?是否能够提升检测速度?

Can you provide steps to run fasternet for other datasets?

作者 您好! 部分卷积只对部分通道进行计算,剩下通道不进行处理。如果对剩下通道也进行计算,是不是就和分组卷积一样了?