REVIEW 3 major objections 5 minor 25 references
Technical Report for ICRA 2025 GOOSE 3D Semantic Segmentation Challenge: Adaptive Point Cloud Understanding for Heterogeneous Robotic Systems
T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Adding platform-conditioned prompts and cross-dataset class alignment to a Point Transformer v3 backbone raises validation mIoU by up to 22.59 percent over the baseline on the GOOSE challenge data.
desk verdict A clean, honest challenge write-up of PPT+PTv3 on GOOSE/GOOSE-Ex, with internally consistent validation tables—but the baseline recipe is missing, so the 22.59% headline is not yet attributable to prompt tuning. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is Point Prompt Tuning wrapped around a PTv3 backbone. Prompt-driven normalization gives the shared backbone decoupled normalization layers selected by a platform label (car, alice, spot), so feature statistics adapt per domain while weights stay shared. Two alignment heads sit on top: PPT-LA projects point features into CLIP's text-embedding space and scores superclasses by similarity to class-name text prompts, while PPT-DA gives each platform its own segmentation head over the shared features. Joint multi-platform training plus this conditioning is what produces the reported per-platform mIoU gains.
What would settle it
Run the trained PPT+PTv3 models on the official GOOSE/GOOSE-Ex test set with platform labels shuffled or removed; if mIoU gains over the PTv3 baseline disappear or drop sharply, the per-platform conditioning, not shared feature learning, is carrying the result.
Extended reading notes
Core claim
On the combined GOOSE and GOOSE-Ex validation splits, conditioning a PTv3 backbone on platform identity through prompt-driven normalization improves mean IoU relative to the unmodified PTv3 baseline by 4.95 percent on MuCAR-3, 12.71 percent on ALICE, and 22.59 percent on Spot. The decoupled-alignment variant performs best on MuCAR-3, while the language-driven CLIP variant performs best on ALICE and Spot. The paper takes these results as evidence that a single shared model can handle heterogeneous LiDAR sources without any external data, with the largest gains on the platform whose data the baseline handles worst.
Load-bearing premise
The approach assumes the robotic platform is known for every scan at training and deployment, and that validation-set improvements predict performance on the withheld challenge test set, which is never reported.
Editorial extensions
If this is right
- A single checkpoint can serve multiple platforms, so adding a new robot to a fleet could amount to defining a new conditioning prompt and head instead of retraining the shared backbone.
- Platforms with rare or hard classes benefit most: the largest per-class IoU gains on Spot are in obstacle and human segmentation.
- Language-driven alignment can rescue classes a platform barely sees, because CLIP embeddings supply semantic relationships rather than relying on class counts.
- Because no external data is required, the same recipe is directly transferable to other multi-dataset segmentation tasks where a per-domain label is available.
Reading between the lines
- The 22.59 percent headline is a relative gain; in absolute mIoU the Spot improvement is about 16 points, so the raw jump is smaller than the percentage suggests.
- The paper reports validation metrics only, so the official challenge test ranking cannot be checked from this report; the reported gains are established on the validation splits.
- A natural extension the paper does not test is conditioning on sensor type or weather instead of platform identity, which would test whether the mechanism transfers to platforms never seen at training time.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This technical report describes the authors' winning entry to the ICRA 2025 GOOSE 3D Semantic Segmentation Challenge. The method combines a Point Transformer v3 (PTv3) backbone with Point Prompt Tuning (PPT), using platform-specific conditional normalization and two alignment strategies: language-driven alignment with CLIP text embeddings (PPT-LA) and decoupled segmentation heads (PPT-DA). Experiments on the GOOSE/GOOSE-Ex validation data report per-platform mIoU, mAcc, and allAcc for the MuCAR-3, ALICE, and Spot platforms. The paper's central claim is that this approach improves mIoU by up to 22.59% relative to a PTv3 baseline, with PPT-LA performing best on ALICE and Spot and PPT-DA performing best on MuCAR-3.
Significance. If the result is supported, the paper provides a practical demonstration that a single PTv3 model can be adapted to heterogeneous LiDAR platforms through lightweight conditioning, with detailed per-class breakdowns that show where the gains occur. The reported tables are internally consistent: the relative gains stated in Section VI-A (MuCAR-3 +4.95%, ALICE +12.71%, Spot +22.59%) match the validation mIoU values in Tables II-IV exactly. The main strength is empirical: the approach uses no additional point-cloud training data, relies on an open-source framework, and is evaluated on a common challenge benchmark. The paper's value is primarily as a challenge report rather than a methodological advance; it does not introduce a new architecture or new theory.
major comments (3)
- [Section V-A, Tables II-IV] The training protocol for the PTv3 baseline is never specified. The bullet list in Section V-A gives implementation details only for the proposed PPT+PTv3 runs, including epochs, optimizer, scheduler, loss, and input channels, but it does not state whether the baseline used the same data splits, the same 50-epoch schedule, the same loss, the same 4-channel input, or any platform conditioning. Since every headline improvement is stated relative to this baseline, the attribution of the gains to PPT is not established. Please provide the exact baseline training recipe and, ideally, run the baseline under the identical protocol with the conditional mechanism ablated to isolate the effect of prompt tuning.
- [Abstract, Section VII] The paper calls itself the winning solution and claims 'substantial performance improvements', but all metrics in Tables II-IV are validation metrics; no withheld test-set result is reported. The official challenge evaluation would be the basis for the 'winning' claim, and validation performance may not transfer to the held-out test distribution. Please report the official test set mIoU and ranking, or explicitly restrict the claims to validation performance so that the 'winning solution' statement is not unsupported.
- [Section V-A, Tables II-IV] All reported numbers come from a single training run with no error bars or multiple seeds, and the per-platform 'best' strategy is selected post hoc from PPT-LA and PPT-DA. The headline 22.59% figure is therefore the maximum over several choices, which can overstate the expected gain. Please report the variance over at least a few seeds or, failing that, clearly state that the numbers are single-run results and avoid presenting the best of two strategies as the central claim.
minor comments (5)
- [Section II, Reference [5]] The text attributes the MinkUNet architecture to reference [5], but [5] is 'Person-MinkUNet', a 3D person detection paper, not the original MinkUNet segmentation model. Please cite the original MinkUNet (Choy et al., 2019) or correct the reference.
- [Abstract and Section IV-C] The abstract says the model is 'trained without requiring additional external data', yet the PPT-LA variant uses pre-trained CLIP text embeddings. This is not necessarily contradictory, but the wording should be clarified to state that no additional point-cloud training data is used, since CLIP is an external pre-trained model.
- [Section IV-C and Tables II-IV] The paper introduces three terms for the same concept: 'Prompt-driven Normalization' in Section II, 'conditional normalization' in Section IV-C1, and 'platform-specific conditioning' in the experimental setup. Please use one consistent term and explain how it maps to the implementation.
- [Section IV-C1] The platform condition is named 'car' in the text while the corresponding platform in Tables I and II is 'MuCAR-3'. Please use consistent naming throughout.
- [Figures 2-4] The qualitative segmentation figures would be more informative if the captions identified the source sequence, whether the sample is from the validation set, and what the color coding for classes is.
Circularity Check
No circularity: the report applies an external open-source method to a new benchmark; the headline gain is internally consistent, though the baseline training recipe is unspecified.
full rationale
The report is a direct application of an existing open-source method (PPT + PTv3, references [3] and [4]) to the GOOSE/GOOSE-Ex benchmark. There is no derived analytical chain and no fitted parameter that is later renamed as a prediction. The per-platform validation mIoU gains cited in the abstract and discussion (MuCAR-3 +4.95%, ALICE +12.71%, Spot +22.59%) match Tables II-IV exactly; for example, Spot: (0.8688 - 0.7087) / 0.7087 = 22.59%, so the reported numbers are internally consistent rather than constructed by definition. The conditioning variables ('car', 'alice', 'spot') are used as model inputs, and evaluating per platform is a reporting choice, not circular reasoning. The main limitation is experimental attribution: Section V-A specifies training details only for the PPT-PTv3 runs and never states how the PTv3 baseline was trained, and all metrics are validation metrics with no withheld test result reported. This is an uncontrolled-comparison and correctness risk, not a circular-derivation risk. No self-citation chain is load-bearing, since the cited PPT and PTv3 works are external to the present author. Therefore no circularity is found.
Assumptions & free parameters
free parameters (3)
- Platform-specific conditioning prompts and parameters =
not reported
- Training hyperparameters =
batch 4, epochs 50, lr 8e-4, wd 5e-3, OneCycleLR rates 5e-5 and 8e-4
- Per-platform best alignment strategy =
MuCAR-3: PPT-DA; ALICE and Spot: PPT-LA
assumptions (4)
- domain assumption Validation split labels are correct and representative of the withheld challenge test set
- domain assumption The 64-class to 7-superclass mapping is applied consistently across platforms
- domain assumption Platform identity is known and fixed at inference for each scan
- standard math PTv3 and PPT are used as described in prior work [3], [4]
Cite this review
Pith. "Pith review of Technical Report for ICRA 2025 GOOSE 3D Semantic Segmentation Challenge: Adaptive Point Cloud Understanding for Heterogeneous Robotic Systems." pith.science (2026). https://pith.science/paper/3ZSJQPDF
@misc{pith2026250606995,
author = {Pith},
title = {Pith review of: Technical Report for ICRA 2025 GOOSE 3D Semantic Segmentation Challenge: Adaptive Point Cloud Understanding for Heterogeneous Robotic Systems},
year = {2026},
howpublished = {\url{https://pith.science/paper/3ZSJQPDF}},
note = {Machine review of arXiv:2506.06995}
}
read the original abstract
This technical report presents the implementation details of the winning solution for the ICRA 2025 GOOSE 3D Semantic Segmentation Challenge. This challenge focuses on semantic segmentation of 3D point clouds from diverse unstructured outdoor environments collected from multiple robotic platforms. This problem was addressed by implementing Point Prompt Tuning (PPT) integrated with Point Transformer v3 (PTv3) backbone, enabling adaptive processing of heterogeneous LiDAR data through platform-specific conditioning and cross-dataset class alignment strategies. The model is trained without requiring additional external data. As a result, this approach achieved substantial performance improvements with mIoU increases of up to 22.59% on challenging platforms compared to the baseline PTv3 model, demonstrating the effectiveness of adaptive point cloud understanding for field robotics applications.
Figures
Figures from the paper (1 more)
Reference graph
Works this paper leans on
-
[1]
The GOOSE Dataset for Perception in Unstructured Environments,
P. Mortimer, R. Hagmanns, M. Granero, T. Luettel, J. Petereit, and H.-J. Wuensche, “The GOOSE Dataset for Perception in Unstructured Environments,” 2023. [Online]. Available: https://arxiv.org/abs/2310. 16788
work page 2023
-
[2]
Excavating in the wild: The goose-ex dataset for semantic segmentation,
R. Hagmanns, P. Mortimer, M. Granero, T. Luettel, and J. Petereit, “Excavating in the wild: The goose-ex dataset for semantic segmentation,” 2024. [Online]. Available: https://arxiv.org/abs/2409. 18788
work page 2024
-
[3]
Point transformer v3: Simpler, faster, stronger,
X. Wu, L. Jiang, P.-S. Wang, Z. Liu, X. Liu, Y . Qiao, W. Ouyang, T. He, and H. Zhao, “Point transformer v3: Simpler, faster, stronger,”
-
[4]
Towards large-scale 3d representation learning with multi-dataset point prompt training,
X. Wu, Z. Tian, X. Wen, B. Peng, X. Liu, K. Yu, and H. Zhao, “Towards large-scale 3d representation learning with multi-dataset point prompt training,” 2024. [Online]. Available: https://arxiv.org/abs/2308.09718
arXiv 2024
-
[5]
Person-MinkUNet: 3D Person Detection with LiDAR Point Cloud
D. Jia and B. Leibe, “Person-minkunet: 3d person detection with lidar point cloud,” 2021. [Online]. Available: https://arxiv.org/abs/ 2107.06780
work page Pith review arXiv 2021
-
[6]
H. Zhao, L. Jiang, J. Jia, P. Torr, and V . Koltun, “Point transformer,”
-
[7]
Point transformer v2: Grouped vector attention and partition-based pooling,
X. Wu, Y . Lao, L. Jiang, X. Liu, and H. Zhao, “Point transformer v2: Grouped vector attention and partition-based pooling,” 2022. [Online]. Available: https://arxiv.org/abs/2210.05666
arXiv 2022
-
[8]
2DPASS: 2D Priors Assisted Semantic Segmentation on LiDAR Point Clouds
X. Yan, J. Gao, C. Zheng, C. Zheng, R. Zhang, S. Cui, and Z. Li, “2dpass: 2d priors assisted semantic segmentation on lidar point clouds,” 2022. [Online]. Available: https://arxiv.org/abs/2207.04397
work page Pith review arXiv 2022
Show all 25 references
-
[9]
Lidar-camera panoptic segmentation via geometry-consistent and semantic-aware alignment,
Z. Zhang, Z. Zhang, Q. Yu, R. Yi, Y . Xie, and L. Ma, “Lidar-camera panoptic segmentation via geometry-consistent and semantic-aware alignment,” 2023. [Online]. Available: https://arxiv.org/abs/2308. 01686
2023
-
[10]
Dino in the room: Leveraging 2d foundation models for 3d segmentation,
K. A. Zeid, K. Yilmaz, D. de Geus, A. Hermans, D. Adrian, T. Linder, and B. Leibe, “Dino in the room: Leveraging 2d foundation models for 3d segmentation,” 2025. [Online]. Available: https://arxiv.org/abs/2503.18944
2025
-
[11]
Dinov2: Learning robust visual features without supervision,
M. Oquab, T. Darcet, T. Moutakanni, H. V o, M. Szafraniec, V . Khalidov, P. Fernandez, D. Haziza, F. Massa, A. El-Nouby, M. Assran, N. Ballas, W. Galuba, R. Howes, P.-Y . Huang, S.-W. Li, I. Misra, M. Rabbat, V . Sharma, G. Synnaeve, H. Xu, H. Jegou, J. Mairal, P. Labatut, A. ...
2024 arXiv
-
[12]
Sonata: Self-supervised learning of reliable point representations,
X. Wu, D. DeTone, D. Frost, T. Shen, C. Xie, N. Yang, J. Engel, R. Newcombe, H. Zhao, and J. Straub, “Sonata: Self-supervised learning of reliable point representations,” 2025. [Online]. Available: https://arxiv.org/abs/2503.16429
2025 arXiv
-
[13]
Crosspoint: Self-supervised cross-modal contrastive learning for 3d point cloud understanding,
M. Afham, I. Dissanayake, D. Dissanayake, A. Dharmasiri, K. Thilakarathna, and R. Rodrigo, “Crosspoint: Self-supervised cross-modal contrastive learning for 3d point cloud understanding,”
-
[14]
Semantickitti: A dataset for semantic scene understanding of lidar sequences,
J. Behley, M. Garbade, A. Milioto, J. Quenzel, S. Behnke, C. Stachniss, and J. Gall, “Semantickitti: A dataset for semantic scene understanding of lidar sequences,” 2019. [Online]. Available: https://arxiv.org/abs/1904.01416
2019 arXiv
-
[15]
nuscenes: A multimodal dataset for autonomous driving,
H. Caesar, V . Bankiti, A. H. Lang, S. V ora, V . E. Liong, Q. Xu, A. Krishnan, Y . Pan, G. Baldan, and O. Beijbom, “nuscenes: A multimodal dataset for autonomous driving,” 2020. [Online]. Available: https://arxiv.org/abs/1903.11027
2020 arXiv
-
[16]
Learning transferable visual models from natural language supervision,
A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark, G. Krueger, and I. Sutskever, “Learning transferable visual models from natural language supervision,” 2021. [Online]. Available: https: //arxiv.org/abs/2103.00020
2021 arXiv
-
[17]
Autonomous off-road navigation for mucar-3,
M. Himmelsbach, T. Luettel, F. Hecker, F. Hundelshausen, and H.- J. Wuensche, “Autonomous off-road navigation for mucar-3,” KI - K¨unstliche Intelligenz, vol. 25, pp. 145–149, 05 2011
2011
-
[18]
An autonomous crawler excavator for hazardous environments,
C. Frese, A. Zube, P. Woock, T. Emter, N. Heide, A. Albrecht, and J. Petereit, “An autonomous crawler excavator for hazardous environments,” at - Automatisierungstechnik , vol. 70, pp. 859–876, 10 2022
2022
-
[19]
Decoupled weight decay regularization,
I. Loshchilov and F. Hutter, “Decoupled weight decay regularization,”
-
[20]
Super-convergence: Very fast training of neural networks using large learning rates,
L. N. Smith and N. Topin, “Super-convergence: Very fast training of neural networks using large learning rates,” 2018. [Online]. Available: https://arxiv.org/abs/1708.07120
2018 arXiv
-
[21]
The lov ´asz-softmax loss: A tractable surrogate for the optimization of the intersection- over-union measure in neural networks,
M. Berman, A. R. Triki, and M. B. Blaschko, “The lov ´asz-softmax loss: A tractable surrogate for the optimization of the intersection- over-union measure in neural networks,” 2018. [Online]. Available: https://arxiv.org/abs/1705.08790 Winners of the GOOSE 3D Semantic Segmenta...
2018 arXiv
-
[2019]
Available: https://arxiv.org/abs/1711.05101
[Online]. Available: https://arxiv.org/abs/1711.05101
-
[2021]
Available: https://arxiv.org/abs/2012.09164
[Online]. Available: https://arxiv.org/abs/2012.09164
2012 arXiv
-
[2022]
Available: https://arxiv.org/abs/2203.00680
[Online]. Available: https://arxiv.org/abs/2203.00680
-
[2024]
Available: https://arxiv.org/abs/2312.10035
[Online]. Available: https://arxiv.org/abs/2312.10035
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.