SLNet: A Super-Lightweight Geometry-Adaptive Network for 3D Point Cloud Recognition

Accepted at ICRA 2026

Mohammad Saeid, Amir Salarpour, Pedram MohajerAnsari, Mert D. Pesé

Abstract

SLNet is a super-lightweight PyTorch framework for 3D point cloud classification and segmentation. The architecture integrates Nonparametric Adaptive Point Embedding (NAPE), Lightweight Geometric Modulation Units (GMU), parameter-free normalization, and compact residual MLP refinement.

The design objective is maximum accuracy-per-parameter efficiency. SLNet achieves strong performance with an extremely low parameter count, minimal memory footprint, and low computational complexity—eliminating the need for attention mechanisms, heavy graph convolutions, or dense residual stacks.

This makes SLNet particularly suitable for edge devices, embedded GPUs, and resource-constrained systems such as NVIDIA Jetson platforms.


Architectural Overview

Overall Architecture

SLNet Architecture

The SLNet pipeline featuring the NAPE Front-End, GMU, and four encoder stages.

NAPE Block

NAPE Block

Nonparametric Adaptive Point Embedding maps raw 3D coordinates using fused Gaussian RBF and Cosine harmonic bases.

GMU Block

GMU Block

Geometric Modulation Unit performs lightweight geometric feature modulation via channel-wise gating.


Embedded GPU Performance (Jetson Orin Nano)

Measured on NVIDIA Jetson Orin Nano (1024 points, batch size 4).

Dataset Model GFLOPs Param (M) Mem (MB) Time (ms)
ModelNet40SLNet-S0.310.1421.3017.83
ModelNet40SLNet-M1.220.5533.0030.11
ScanObjectNNSLNet-S0.260.1217.8716.36
ScanObjectNNSLNet-M1.020.4827.3727.43

Efficiency Metrics

We propose two composite efficiency indices to benchmark model performance against computational constraints:

$$ NetScore = 20 \log_{10} \left( \frac{a^2}{\sqrt{p \cdot m}} \right) $$

$$ NetScore+ = 20 \log_{10} \left( \frac{a^2}{\sqrt{p \cdot m} \cdot (t \cdot r)^{1/4}} \right) $$

Where a = accuracy, p = parameters, m = FLOPs, t = latency, and r = peak memory. SLNet consistently dominates these metrics.


Citation

@article{saeid2026slnet,
  title={SLNet: A Super-Lightweight Geometry-Adaptive Network for 3D Point Cloud Recognition},
  author={Saeid, Mohammad and Salarpour, Amir and MohajerAnsari, Pedram and Pes{\'e}, Mert D},
  booktitle={2026 IEEE International Conference on Robotics and Automation (ICRA)}, 
  year={2026}
}