Papers
Topics
Authors
Recent
Search
2000 character limit reached

Light-C3k2: Efficient Cross-Stage Partial Block

Updated 12 April 2026
  • Light-C3k2 is a lightweight neural module that integrates partial convolution (PConv) and parameter-free SimAM to reduce computation while maintaining robust feature extraction.
  • Its dual-branch design splits input features for parallel Light-Bottleneck processing and identity mapping, ensuring efficient information flow and preserved representation.
  • Parameter and FLOP analysis indicates nearly a 48% reduction in resource usage compared to standard CSP modules, making it ideal for embedded, real-time applications.

The C3k2 Cross-Stage Partial Block, specifically in its Light-C3k2 form, is a lightweight neural network module introduced in the context of the LSP-YOLO architecture for real-time sitting posture recognition on embedded devices. By leveraging partial convolution (PConv) and the parameter-free Similarity-Aware Activation Module (SimAM), Light-C3k2 substantially reduces computational cost and parameter count while maintaining strong feature extraction capability. The resulting building block offers an efficient alternative to standard CSP modules containing full Bottleneck blocks, making it well-suited for edge deployment scenarios where resources are constrained (Li et al., 18 Nov 2025).

1. Design Motivation and Network Placement

In the original YOLOv11-Pose backbone, the “C3k2” block is a Cross-Stage-Partial (CSP) module that incorporates two standard Bottleneck sub-blocks composed of 3×3 convolutions applied to all channels. Although powerful for representation, this design is computationally intensive in terms of both parameters and FLOPs. LSP-YOLO seeks to simultaneously (a) drastically reduce the per-block cost and (b) preserve or restore the representational capability lost due to parameter reduction.

Two core mechanisms are introduced in every Bottleneck unit within the CSP module:

  • Partial Convolution (PConv): Only a fraction rr of the channels undergo the k×kk\times k convolution, reducing the compute load by approximately (1r2)(1 - r^2).
  • SimAM: This closed-form, parameter-free, energy-based attention mechanism reweights all neurons, compensating for the representational loss in untouched channels.

The resulting Light-C3k2 replaces every traditional C3k2 block within both the backbone and neck regions of LSP-YOLO (Li et al., 18 Nov 2025).

2. Module Architecture and Data Flow

Let XRC×H×WX\in\mathbb{R}^{C\times H\times W} denote the input feature map. The Light-C3k2 module executes the following sequence:

  1. Split Convolution: Apply a 1×11 \times 1 convolution to reduce channels to C=C/2C’ = C/2:

Y0=Conv1×1(CC/2)(X),Y0R(C/2)×H×WY_0 = \mathrm{Conv}_{1\times1}^{(C\rightarrow C/2)}(X), \quad Y_0\in\mathbb{R}^{(C/2)\times H\times W}

Followed by BatchNorm and SiLU (or ReLU) activation.

  1. Dual Branch Processing:
    • Branch A: Two sequential Light-Bottleneck units, each maintaining channel count C/2C/2.
    • Branch B: Yields Y0Y_0 via identity (no transformation).
  2. Concatenation: Channelwise concatenation:

Ycat=concat(B2B1(Y0),Y0)RC×H×WY_{\mathrm{cat}} = \mathrm{concat}(B_2\circ B_1(Y_0),\, Y_0) \in \mathbb{R}^{C\times H\times W}

  1. Merge Convolution: k×kk\times k0 convolution restores the channel dimension to k×kk\times k1 (or a configurable k×kk\times k2):

k×kk\times k3

With BatchNorm and activation.

Branch A’s Light-Bottleneck units adopt the following internal structure.

3. Light-Bottleneck: Internal Mechanisms

Given input k×kk\times k4, each Light-Bottleneck operates as follows:

  1. Partial k×kk\times k5 Convolution: k×kk\times k6 channels are convolved, the remainder k×kk\times k7 are statically routed. Followed by BatchNorm and nonlinearity k×kk\times k8.
  2. First Pointwise k×kk\times k9 Convolution: Applied to all channels, with BatchNorm and activation.
  3. Second Pointwise (1r2)(1 - r^2)0 Convolution: BatchNorm only; this design reduces channel mixing cost.
  4. SimAM Attention: Parameter-free energy-based mask (1r2)(1 - r^2)1 is computed and applied via elementwise product: (1r2)(1 - r^2)2.
  5. Residual Add & Activation: Final output is (1r2)(1 - r^2)3.

This structure leverages PConv for efficiency, pointwise convolutions for inter-channel blending, and SimAM to compensate for restricted channel mixing.

4. Precise Layer Configurations

All operations are specified concretely:

  • Split/merge convolutions: (1r2)(1 - r^2)4 kernel, (1r2)(1 - r^2)5 channels, stride 1, zero padding, with BatchNorm and SiLU/RELU.
  • PConv: (1r2)(1 - r^2)6 kernel by default ((1r2)(1 - r^2)7), operating on (1r2)(1 - r^2)8 of (1r2)(1 - r^2)9 channels, stride 1, padding 1, followed by BatchNorm and nonlinearity.
  • Pointwise convolutions: Each XRC×H×WX\in\mathbb{R}^{C\times H\times W}0, XRC×H×WX\in\mathbb{R}^{C\times H\times W}1 (stride 1, zero padding), followed by BatchNorm and activation (first conv), or BatchNorm only (second conv).
  • SimAM: Applied to all XRC×H×WX\in\mathbb{R}^{C\times H\times W}2 channels, yielding a channelwise-sigmoid energy mask; no learnable parameters.

This exact configuration enables plug-and-play adoption for any generic XRC×H×WX\in\mathbb{R}^{C\times H\times W}3 and XRC×H×WX\in\mathbb{R}^{C\times H\times W}4, with a default PConv split ratio XRC×H×WX\in\mathbb{R}^{C\times H\times W}5.

5. Transformations and Feature Map Notation

The following expressions summarize the intermediate computations:

  • Splitting (input to XRC×H×WX\in\mathbb{R}^{C\times H\times W}6):

XRC×H×WX\in\mathbb{R}^{C\times H\times W}7

  • Branch A: Sequential Light-Bottlenecks:

XRC×H×WX\in\mathbb{R}^{C\times H\times W}8

for XRC×H×WX\in\mathbb{R}^{C\times H\times W}9 (two applications).

  • Branch B:

1×11 \times 10

  • Concatenate and merge:

1×11 \times 11

1×11 \times 12

6. Parameter and FLOP Analysis

Let 1×11 \times 13. The parameter count for a standard C3k2 block is:

  • Split conv: 1×11 \times 14
  • Two Bottlenecks: 1×11 \times 15 1×11 \times 16 [(1×11 \times 17 conv 1×11 \times 18) + (1×11 \times 19 conv C=C/2C’ = C/20)] C=C/2C’ = C/21
  • Merge conv: C=C/2C’ = C/22

Total standard: C=C/2C’ = C/23

For Light-C3k2 with PConv ratio C=C/2C’ = C/24:

  • Split and merge conv: C=C/2C’ = C/25
  • Two Light-Bottlenecks: C=C/2C’ = C/26
  • Total: C=C/2C’ = C/27

The parameter ratio is:

C=C/2C’ = C/28

For C=C/2C’ = C/29: Y0=Conv1×1(CC/2)(X),Y0R(C/2)×H×WY_0 = \mathrm{Conv}_{1\times1}^{(C\rightarrow C/2)}(X), \quad Y_0\in\mathbb{R}^{(C/2)\times H\times W}0 (about 48% fewer parameters). FLOPs scale analogously (Li et al., 18 Nov 2025).

7. Computational Efficiency and Representational Integrity

Key mechanisms by which Light-C3k2 achieves its objectives include:

  • PConv savings: Avoiding unnecessary convolutions across all channels, saving Y0=Conv1×1(CC/2)(X),Y0R(C/2)×H×WY_0 = \mathrm{Conv}_{1\times1}^{(C\rightarrow C/2)}(X), \quad Y_0\in\mathbb{R}^{(C/2)\times H\times W}1 of the Y0=Conv1×1(CC/2)(X),Y0R(C/2)×H×WY_0 = \mathrm{Conv}_{1\times1}^{(C\rightarrow C/2)}(X), \quad Y_0\in\mathbb{R}^{(C/2)\times H\times W}2 cost.
  • SimAM regularization: Parameter-free, closed-form attention that reweights all activations, mitigating any feature loss from PConv.
  • Residual connections: Ensure information is preserved when an identity transformation suffices.
  • Balanced design: Coupling PConv and SimAM within the CSP framework yields nearly the original expressivity at roughly half the parameter and FLOP budget.

This suggests the Light-C3k2 block offers an effective trade-off between computational savings and model capacity, specifically benefiting real-time embedded recognition tasks with stringent resource limits (Li et al., 18 Nov 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to C3k2 Cross-Stage Partial Block.