SegNeXt icon indicating copy to clipboard operation
SegNeXt copied to clipboard

Official Pytorch implementations for "SegNeXt: Rethinking Convolutional Attention Design for Semantic Segmentation" (NeurIPS 2022)

Results 33 SegNeXt issues
Sort by recently updated
recently updated
newest added

First of all, thank you for your work. Secondly, I encountered some problems. Please take a look at it for me when you are free. I plan to add your...

Hello, Thank you for sharing valuable code of your work. Could you get the config files for the Pascal VOC? I couldn't see that in your files. thank you

Can you tell us where the mIoU and mpa are calculated? Is it in tools/test.py? Or is it somewhere else?

From the paper you have published, it is mentioned that the model was also tested on i-SAID. I would like to reproduce the results from your paper. Is it possible...

Hello. Thank you for uploading your great codes. Recently, I'm working with these codes for semantic segmentation. I made my config file based on deeplabv3plus model since this model provides...

When I run the experiment using 4 GPUs, I will report an error: RuntimeError: CUDA error: the launch timed out and was terminated CUDA kernel errors might be asynchronously reported...

According to the tools/get_flops.py, I think you took MACs as FLOPs, but always one MAC is two FLOP.

Hello, I would like to ask if it is possible to split a 7*7 convolution kernel into (1*7) and (7*1) convolution kernels in 2D, how should I do it if...