RepLKNet-pytorch icon indicating copy to clipboard operation
RepLKNet-pytorch copied to clipboard

Scaling Up Your Kernels to 31x31: Revisiting Large Kernel Design in CNNs (CVPR 2022)

Results 34 RepLKNet-pytorch issues
Sort by recently updated
recently updated
newest added

When applying model.structural_reparam(), there is a need to add padding so that the output size can match, see #48. Besides, I find that the kernel_size, stride, padding, and dilation may...

File "D:\A_File\Project\RepLKNet-pytorch-main\optim_factory.py", line 19, in from timm.optim.novograd import NovoGrad ModuleNotFoundError: No module named 'timm.optim.novograd'

When I ran directly `replknet.py` with using `DepthWiseConv2dImplicitGEMM`, I got this error: ``` RuntimeError: The size of tensor a (56) must match the size of tensor b (26) at non-singleton...

Thanks for the author's nice work. I met some problems when installing large_depthwise_conv2d_torch_extension. However, I finally succeeded in the following ways. Environment: both pytorch1.12 + python3.9+cuda11.3 and pytorch1.10+python3.8+cuda11.3 on Ubuntu...

Hi, thanks for your nice work. I encountered a problem when I ran `python depthwise_conv2d_implicit_gemm.py`. I got `ModuleNotFoundError: No module named '_depthwise_conv2d_implicit_gemm_C'`. Could you please tell me how I can...

i changed the input size to 224×224,and compare RepLKNet with resnet101, it seems that resnet101 is larger than RepLKNet-13, left is RepLKNet-13, right is resnet101 ![13_224](https://user-images.githubusercontent.com/90841315/167624553-0d8797c4-8283-4207-a7a6-f10d6c58b820.png)![resnet224](https://user-images.githubusercontent.com/90841315/167624587-b555c846-4d84-4cbc-81da-cb1dc5307650.png)

if torch.cuda.is_available(): x = torch.randn(64, 384, 256, 31).cuda() m1 = DepthWiseConv2dImplicitGEMM(384, 31, bias=False).cuda() m2 = nn.Conv2d(384, 384, 31, padding=31 // 2, bias=False, groups=384).cuda() m2.load_state_dict(m1.state_dict()) with torch.cuda.amp.autocast(True): import time t1 =...

Hi, I tried to use structure re-param method in 3D segmentation task. The same prediction can be achieved using the 333+111+identity => 333. But it fails at 777+333+identity =>777. How...

# Welcome update to OpenMMLab 2.0 I am Vansin, the technical operator of OpenMMLab. In September of last year, we announced the release of OpenMMLab 2.0 at the World Artificial...