🤖 AI Summary
Real-time semantic segmentation suffers from high inference latency due to multi-path architectures, while prevailing methods rely on external teacher models for knowledge distillation. Method: This paper proposes a training-inference dynamic reconfigurable architecture: during training, it employs jointly expanded vertical multi-convolutional and horizontal multi-path structures to enhance representational capacity; at inference time, structural reparameterization equivalently compresses the model into a single-path, single-convolution architecture—enabling zero-overhead acceleration. Crucially, this self-distillation mechanism operates without any external teacher model. Contribution/Results: The method achieves state-of-the-art performance on Cityscapes, CamVid, and Pascal VOC 2012, simultaneously advancing both accuracy and inference speed along the Pareto frontier. It establishes a new benchmark for efficient real-time semantic segmentation by unifying architectural flexibility, training-time expressiveness, and inference-time efficiency.
📝 Abstract
Recent real-time semantic segmentation models, whether single-branch or multi-branch, achieve good performance and speed. However, their speed is limited by multi-path blocks, and some depend on high-performance teacher models for training. To overcome these issues, we propose Golden Cudgel Network (GCNet). Specifically, GCNet uses vertical multi-convolutions and horizontal multi-paths for training, which are reparameterized into a single convolution for inference, optimizing both performance and speed. This design allows GCNet to self-enlarge during training and self-contract during inference, effectively becoming a"teacher model"without needing external ones. Experimental results show that GCNet outperforms existing state-of-the-art models in terms of performance and speed on the Cityscapes, CamVid, and Pascal VOC 2012 datasets. The code is available at https://github.com/gyyang23/GCNet.