Papers › RangeViT: Towards Vision Transformers for 3D Semantic Segmentation in Autonomous Driving

RangeViT: Towards Vision Transformers for 3D Semantic Segmentation in Autonomous Driving

24 Jan 2023CVPR 2023 1arXiv:2301.10222archive 2025-07-28

Angelika Ando, Spyros Gidaris, Andrei Bursuc, Gilles Puy, Alexandre Boulch, Renaud Marlet

Casting semantic segmentation of outdoor LiDAR point clouds as a 2D problem, e.g., via range projection, is an effective and popular approach. These projection-based methods usually benefit from fast computations and, when combined with techniques which use other point cloud representations, achieve state-of-the-art results. Today, projection-based methods leverage 2D CNNs but recent advances in computer vision show that vision transformers (ViTs) have achieved state-of-the-art results in many image-based benchmarks. In this work, we question if projection-based methods for 3D semantic segmentation can benefit from these latest improvements on ViTs. We answer positively but only after combining them with three key ingredients: (a) ViTs are notoriously hard to train and require a lot of training data to learn powerful representations. By preserving the same backbone architecture as for RGB images, we can exploit the knowledge from long training on large image collections that are much cheaper to acquire and annotate than point clouds. We reach our best results with pre-trained ViTs on large image datasets. (b) We compensate ViTs' lack of inductive bias by substituting a tailored convolutional stem for the classical linear embedding layer. (c) We refine pixel-wise predictions with a convolutional decoder and a skip connection from the convolutional stem to combine low-level but fine-grained features of the the convolutional stem with the high-level but coarse predictions of the ViT encoder. With these ingredients, we show that our method, called RangeViT, outperforms existing projection-based methods on nuScenes and SemanticKITTI. The code is available at https://github.com/valeoai/rangevit.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2301.10222")

Code

Syntology Ran 23 of 33 code samples harvested from 1 repository linked to this paper; 10 have no recorded run. Of those that ran: 4 ran · honoured contract; 1 ran · violated contract; 2 ran · our draft was wrong; 4 ran · fixture could not drive it; 12 ran with no contract checked.

By repository: official repository: 32 samples from 1 repository, 22 ran; 1 identical to code first harvested elsewhere. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

valeoai/rangevit officialmentioned in papermentioned on GitHubpytorch report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

33 samples harvested; 23 ran; 4 honoured the contract we drafted; 10 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

4ran · honoured contract
1ran · violated contract
2ran · our draft was wrong
4ran · fixture could not drive it
12ran
10unverified

Licence: 1 of the 33 samples is pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from valeoai/rangevit. Some samples are identical code Syntology first harvested from another repository; for those, this paper's copy is not located and its licence is not recorded. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

Attention valeoai/rangevit/models/rangevit.py official repository ran Apache-2.0 (permissive) · cec164e8a2ce78c9 · report
Block valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · a95957a1d20487a9 · report
ConvStem valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic fingerprinted Apache-2.0 (permissive) · ac1773d923b8d9e2 · report
DecoderLinear valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · fe06d8e8349ec069 · report
DecoderUpConv valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 7a18eaf8e774211d · report
FeedForward valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 604e2495db9675ea · report
PatchEmbedding valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 84bdbfecb1b19ac6 · report
RangeViT_KPConv valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · e5e57595ef10210b · report
RangeViT_noKPConv valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic fingerprinted Apache-2.0 (permissive) · a3e4c0d909ed54df · report
ResBlock valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic fingerprinted Apache-2.0 (permissive) · 4db77fb9e204e56b · report
ResContextBlock valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic fingerprinted Apache-2.0 (permissive) · 90645354e817adc7 · report
UpConvBlock valeoai/rangevit/models/rangevit.py official repository ran · metamorphic tier: deterministic Apache-2.0 (permissive) · 40208c8d6e460282 · report
adapt_input_conv valeoai/rangevit/models/rangevit.py official repository ran · fixture could not drive it Apache-2.0 (permissive) · c58578dcfe39d5e3 · report
gather valeoai/rangevit/models/rangevit.py official repository ran · fixture could not drive it Apache-2.0 (permissive) · 06eb9b038422a6ef · report
get_grid_size_1d valeoai/rangevit/models/rangevit.py official repository ran · honoured contract Apache-2.0 (permissive) · d87e791164714d95 · report
get_grid_size_2d valeoai/rangevit/models/rangevit.py official repository ran · honoured contract Apache-2.0 (permissive) · b7b03725c0cea60a · report
kernel_point_optimization_debug valeoai/rangevit/models/rangevit.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 92429fcd23170b41 · report
padding valeoai/rangevit/models/rangevit.py official repository ran · fixture could not drive it Apache-2.0 (permissive) · faa633e27024c982 · report
radius_gaussian valeoai/rangevit/models/rangevit.py official repository ran · violated contract Apache-2.0 (permissive) · 42f2cd40ba483d3b · report
resize_pos_embed valeoai/rangevit/models/rangevit.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 039235a9d747b605 · report
spherical_Lloyd valeoai/rangevit/models/rangevit.py official repository ran · honoured contract Apache-2.0 (permissive) · 4ab84fb06d2ccf79 · report
unpadding valeoai/rangevit/models/rangevit.py official repository ran · fixture could not drive it fingerprinted Apache-2.0 (permissive) · f91d2b53f12127a0 · report
KPClassifier valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · cd6b811b76e85666 · report
KPConv valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 8c5ddbf594c022e1 · report
RangeViT valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 34a83804146235a8 · report
VisionTransformer valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 6b3bd6eb6760b684 · report
create_decoder valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 33d2c346ea1aa483 · report
create_rangevit valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 6c8a129dc783ab5a · report
create_vit valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 2be1b57c31497f10 · report
dist_barrier valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 4543b408ae704bc3 · report
init_weights valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · 3f463ff854258680 · report
load_kernels valeoai/rangevit/models/rangevit.py official repository unverified Apache-2.0 (permissive) · a39742896238e1ff · report
create_3D_rotations identical code first harvested elsewhere ran · honoured contract fingerprinted licence of this copy not recorded · c545a5b0a698e295 · report

Tasks

3D Semantic SegmentationAutonomous DrivingInductive BiasSemantic Segmentation

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections