REVIEW 3 major objections 6 minor 33 references
Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read Topo2Seq claims that adding a training-only topology sequence decoder, fed randomized key-point prompts from the lane detector, makes the detector reason about lane connectivity as ordered sequences and lifts OpenLane-V2 topology scores…
desk verdict A training-only sequence decoder gives LaneSegNet a real but incremental bump; the DAG/DFS serialization assumption and missing code/reproducibility are the main things to pin down. 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 central mechanism is the dual-decoder setup with randomized-order prompt-to-sequence learning. The lane segment decoder predicts lanes and an adjacency matrix, as in DETR-like detectors; the topology sequence decoder is an autoregressive transformer with a causal mask that consumes an input sequence made of a key-point prompt section and an edge-sequence section, and predicts the target edge sequence. The lane graph is first transformed into a directed acyclic graph and serialized into edge sequences using depth-first search, with each edge encoded as six integers describing key-point coordinates, category, connectivity parent index, and a Bezier control point. Feeding unordered key points as prompts forces the sequence decoder to infer which key point belongs to which edge and in what order, which in turn refines the BEV features used by the lane segment decoder.
What would settle it
Evaluate Topo2Seq on a curated set of OpenLane-V2 validation scenes containing roundabouts or U-turns and compare its TOPll on those scenes against a matched set of acyclic scenes: if topology accuracy drops sharply on the cyclic scenes, the directed-acyclic-graph serialization is the limiting assumption; if it does not drop, the central sequence-learning claim is not undermined by cyclic road structures.
Extended reading notes
Core claim
The paper's central claim is that randomized-order prompt-to-sequence learning is enough to transfer long-range perception and topology reasoning from a sequence decoder to a DETR-style lane segment decoder. Rather than using the sequence decoder for inference, Topo2Seq keeps it as a training-time teacher: it extracts key points from the lane segment decoder's predicted graph, shuffles their order, and asks the sequence decoder to reconstruct the ground-truth edge sequence of the lane graph serialized as a directed acyclic graph. The training signal propagates through the shared bird's-eye-view features, reducing endpoint misalignment and duplicate predictions. The reported result is state-of-the-art on OpenLane-V2 subset A: with ResNet-50 at 48 epochs, OLS* reaches 45.8, DETl 36.7, TOPll 30.0, and TOPlsls 29.9, surpassing LaneSegNet by 2.4 to 2.7 points on centerline metrics and by 2.6 points on TOPlsls.
Load-bearing premise
The whole approach assumes every road scene's lane connections can be written as a non-looping chain with a single depth-first ordering of points, so circular traffic patterns like roundabouts and U-turns cannot be fully represented.
Editorial extensions
If this is right
- If the reported numbers hold, Topo2Seq is the best-performing lane topology reasoning method on OpenLane-V2 subset A with a ResNet-50 backbone at 48 epochs.
- The claimed improvements transfer from the auxiliary decoder to the inference-time detector, so a vehicle can get better topology reasoning at the same runtime of 14.7 FPS as the baseline detector.
- The method specifically targets endpoint misalignment and duplicate lane predictions, the two failure modes the paper identifies in DETR-like lane detectors.
- The randomized-order prompt design is what forces the model to reason about connectivity; using ordered ground-truth prompts yields smaller gains, according to the ablation study.
- Because the sequence decoder is training-only, the approach can be layered on existing lane-segment architectures without changing their deployment footprint.
Reading between the lines
- One extension implied by the design is to apply the same training-only sequence decoder to other graph-structured prediction tasks whose targets can be serialized, such as pedestrian crossing graphs or lane-change graphs; the loss and prompt design are not lane-specific.
- The directed-acyclic-graph assumption suggests a specific stress test: scenes with roundabouts or U-turns. A natural follow-up would modify the edge-sequence encoding to handle cycles, for example by allowing multiple depth-first orderings or explicit cycle tokens.
- A broader reading is that unordered set-based detectors can be regularized by an order-sensitive auxiliary task, which may reduce their dependence on complex matching losses in other detection settings.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. Topo2Seq proposes a dual-decoder training framework for lane topology reasoning from multi-view images. A lane segment decoder predicts centerline segments and pairwise connectivity, while a training-only topology sequence decoder is supervised to autoregressively reconstruct edge sequences derived from the ground-truth lane graph. The two decoders interact through 'randomized order prompt-to-sequence learning': unordered keypoint coordinates from predicted lanes are prepended to the edge-sequence input, and the lane segment decoder is trained jointly with a maximum-likelihood sequence loss. The paper evaluates on OpenLane-V2 subset A and reports consistent improvements over LaneSegNet with ResNet-50 at 24 and 48 epochs, plus ablations supporting the sequence branch.
Significance. If the reported results are reproducible, the method is a useful contribution: it shows that sequence-level topology supervision can be injected into a DETR-style lane graph detector without adding inference cost, and the gains on mAP, APls, APped, and TOPlsls in Tables 1 and 2 are internally consistent. The training-only design and the 14.7 FPS inference rate are practical strengths. However, the central empirical claim rests on a single run without error bars or released code, and the topology-sequence representation relies on an unvalidated DAG assumption; both points need to be addressed before the state-of-the-art claim can be taken at face value.
major comments (3)
- [Method, 'Structure of the sequences' and Eq. (7)] The DAG/DFS serialization assumption is load-bearing and is not validated anywhere in the paper. The authors state that the ground-truth lane graph is transformed into edge sequences 'Following RoadNet' and that Depth-First Search fixes a unique key-point order. This representation is faithful only if every scene's lane graph is acyclic. OpenLane-V2 is a real-road benchmark, and scenes with roundabouts or U-turns can contain directed cycles; for such frames no DFS order can encode the cycle without omitting a back edge or duplicating a vertex, so the target sequence yE used in Eq. (7) encodes a corrupted graph. Since the claimed benefit to the lane segment decoder flows through this shared supervision, the method can at best learn incomplete topology on cyclic scenes. The authors should either prove that OpenLane-V2 lane graphs are acyclic by annotation construction, report the prevalence of directed cycles in subset A and evaluate on subpopulations with and without cycles, or adopt an edge-list encoding that handles cycles.
- [Experiments, Tables 1 and 2] All reported numbers come from a single training run, with no error bars, no multiple-seed statistics, and no code or checkpoints released. The abstract and conclusion claim 'state-of-the-art performance on the OpenLane-V2 dataset', but the experiments cover only subset A. Because the main claim is a quantitative superiority of about 2.0-2.7 points over LaneSegNet, the absence of variance estimates makes it impossible to judge whether the gap is significant. The authors should report mean and standard deviation over at least three seeds and restrict the state-of-the-art claim to subset A or provide full-benchmark results.
- [Experiments, Implementation Details and Tables 1-2] The 48-epoch comparison is not apples-to-apples with the 24-epoch baselines: Topo2Seq uses a two-stage schedule (12 epochs of stable output followed by 12 epochs of decoder interaction, repeated to 48), while LaneSegNet's 48-epoch numbers are obtained from standard continuous training. The paper should clarify whether the gain comes from the sequence branch or from the staged training schedule, and ideally include a LaneSegNet baseline trained with the same two-stage schedule to isolate the effect of the proposed method.
minor comments (6)
- [Eq. (3)] 'Sigmod' should read 'Sigmoid'.
- [Eq. (7)] There is a stray comma in 'logP (ˆyE i |, Concat(yK, yE<i), F)'; the argument after the conditioning bar should not contain a comma before 'Concat'.
- [Table 2 caption] The caption lists 'TOPlsls (%)' as a reported metric, but the table columns show only OLS*, DETl, and TOPll; the caption and the table should be aligned.
- [Abstract and Conclusions] The claims of state-of-the-art performance should explicitly say 'OpenLane-V2 subset A', since that is the only subset evaluated in the paper.
- [Method, Heads paragraph] 'We emplopy MLPs' should read 'We employ MLPs'.
- [Throughout] The capitalization 'Lanesegnet' in the main text is inconsistent with the reference 'LaneSegNet'.
Circularity Check
No significant circularity: reported gains are measured against an external benchmark and the auxiliary sequence decoder is training-only.
full rationale
The derivation chain is self-contained with respect to circularity. The paper's central claim is that training a lane segment decoder jointly with a training-only topology sequence decoder improves OpenLane-V2 metrics. The evidence is the comparison in Tables 1-2 against external methods on the OpenLane-V2 validation set, and the ablation in Table 3; these quantities are not fitted inputs renamed as predictions. The sequence target yE is constructed from ground-truth lane graphs (Eq. 5) and the auxiliary objective (Eq. 7) is a maximum-likelihood loss on those targets; the topology sequence decoder is removed at inference. The only notable assumption is the DAG/DFS serialization of lane graphs ('we transform the Directed Acyclic Graph (DAG) into edge sequences ... use Depth-First Search to perform the sorting'), which is inherited from RoadNet and is a faithfulness/correctness concern for cyclic scenes, not circular reasoning: the supervision is still external ground truth, and the claimed SOTA is measured independently. No load-bearing self-citation, imported uniqueness theorem, or definitional equivalence was found.
Assumptions & free parameters
free parameters (4)
- Loss weights alpha_1..alpha_6 =
0.025, 1.5, 3.0, 0.1, 5.0, 1.0
- Sequence token budget =
802 tokens (201 key-point prompt + 601 edge sequence)
- Two-stage training schedule =
12+12 and 24+24 epochs
- Key-point coordinate quantization
assumptions (4)
- domain assumption Road lane topology can be encoded as a Directed Acyclic Graph with a unique Depth-First-Search ordering of key points and cubic Bezier edges.
- domain assumption Cubic Bezier curves with two control points adequately represent lane centerline geometry between key points.
- ad hoc to paper The maximum-likelihood sequence loss transfers improved long-range and topology reasoning to the lane segment decoder through the shared BEV encoder.
- domain assumption Pretrained ResNet-50, FPN, and BEVFormer features provide sufficient geometric and semantic information for both lane segments and topology sequences.
Cite this review
Pith. "Pith review of Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning." pith.science (2026). https://pith.science/paper/FJNQR3NL
@misc{pith2026250208974,
author = {Pith},
title = {Pith review of: Topo2Seq: Enhanced Topology Reasoning via Topology Sequence Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/FJNQR3NL}},
note = {Machine review of arXiv:2502.08974}
}
read the original abstract
Extracting lane topology from perspective views (PV) is crucial for planning and control in autonomous driving. This approach extracts potential drivable trajectories for self-driving vehicles without relying on high-definition (HD) maps. However, the unordered nature and weak long-range perception of the DETR-like framework can result in misaligned segment endpoints and limited topological prediction capabilities. Inspired by the learning of contextual relationships in language models, the connectivity relations in roads can be characterized as explicit topology sequences. In this paper, we introduce Topo2Seq, a novel approach for enhancing topology reasoning via topology sequences learning. The core concept of Topo2Seq is a randomized order prompt-to-sequence learning between lane segment decoder and topology sequence decoder. The dual-decoder branches simultaneously learn the lane topology sequences extracted from the Directed Acyclic Graph (DAG) and the lane graph containing geometric information. Randomized order prompt-to-sequence learning extracts unordered key points from the lane graph predicted by the lane segment decoder, which are then fed into the prompt design of the topology sequence decoder to reconstruct an ordered and complete lane graph. In this way, the lane segment decoder learns powerful long-range perception and accurate topological reasoning from the topology sequence decoder. Notably, topology sequence decoder is only introduced during training and does not affect the inference efficiency. Experimental evaluations on the OpenLane-V2 dataset demonstrate the state-of-the-art performance of Topo2Seq in topology reasoning.
Figures
Reference graph
Works this paper leans on
-
[1]
H.; Vora, S.; Liong, V
Caesar, H.; Bankiti, V.; Lang, A. H.; Vora, S.; Liong, V. E.; Xu, Q.; Krishnan, A.; Pan, Y.; Baldan, G.; and Beijbom, O. 2020. nuscenes: A multimodal dataset for autonomous driving. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 11621--11631
2020
-
[2]
Can, Y. B.; Liniger, A.; Paudel, D. P.; and Van Gool, L. 2021. Structured bird's-eye-view traffic scene understanding from onboard images. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 15661--15670
work page 2021
-
[3]
Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; and Zagoruyko, S. 2020. End-to-end object detection with transformers. In European conference on computer vision, 213--229. Springer
2020
-
[4]
Chen, T.; Saxena, S.; Li, L.; Fleet, D. J.; and Hinton, G. 2021. Pix2seq: A language modeling framework for object detection. arXiv preprint arXiv:2109.10852
arXiv 2021
-
[5]
Chen, T.; Saxena, S.; Li, L.; Lin, T.-Y.; Fleet, D. J.; and Hinton, G. E. 2022. A unified sequence interface for vision tasks. Advances in Neural Information Processing Systems, 35: 31333--31346
work page 2022
-
[6]
Deng, J.; Dong, W.; Socher, R.; Li, L.-J.; Li, K.; and Fei-Fei, L. 2009. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition, 248--255. Ieee
2009
-
[7]
Devlin, J.; Chang, M.-W.; Lee, K.; and Toutanova, K. 2018. BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding. arXiv preprint arXiv:1810.04805
arXiv 2018
-
[8]
He, K.; Zhang, X.; Ren, S.; and Sun, J. 2016. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 770--778
2016
Show all 33 references
-
[9]
P.; and Ba, J
Kingma, D. P.; and Ba, J. 2015. Adam: A Method for Stochastic Optimization. In ICLR
2015
-
[10]
Li, H.; Huang, Z.; Wang, Z.; Rong, W.; Wang, N.; and Liu, S. 2024. Enhancing 3D Lane Detection and Topology Reasoning with 2D Lane Priors. arXiv preprint arXiv:2406.03105
2024 arXiv
-
[11]
Li, Q.; Wang, Y.; Wang, Y.; and Zhao, H. 2022 a . Hdmapnet: An online hd map construction and evaluation framework. In 2022 International Conference on Robotics and Automation (ICRA), 4628--4634. IEEE
2022
-
[12]
Li, T.; Chen, L.; Wang, H.; Li, Y.; Yang, J.; Geng, X.; Jiang, S.; Wang, Y.; Xu, H.; Xu, C.; et al. 2023 a . Graph-based topology reasoning for driving scenes. arXiv preprint arXiv:2304.05277
2023 arXiv
-
[13]
Li, T.; Jia, P.; Wang, B.; Chen, L.; Jiang, K.; Yan, J.; and Li, H. 2023 b . Lanesegnet: Map learning with lane segment perception for autonomous driving. arXiv preprint arXiv:2312.16108
2023
-
[14]
Li, Z.; Wang, W.; Li, H.; Xie, E.; Sima, C.; Lu, T.; Qiao, Y.; and Dai, J. 2022 b . Bevformer: Learning bird’s-eye-view representation from multi-camera images via spatiotemporal transformers. In European conference on computer vision, 1--18. Springer
2022
-
[15]
Liao, B.; Chen, S.; Jiang, B.; Cheng, T.; Zhang, Q.; Liu, W.; Huang, C.; and Wang, X. 2023 a . Lane graph as path: Continuity-preserving path-wise modeling for online lane graph construction. arXiv preprint arXiv:2303.08815
2023 arXiv
-
[16]
Liao, B.; Chen, S.; Wang, X.; Cheng, T.; Zhang, Q.; Liu, W.; and Huang, C. 2022. Maptr: Structured modeling and learning for online vectorized hd map construction. arXiv preprint arXiv:2208.14437
2022 arXiv
-
[17]
Liao, B.; Chen, S.; Zhang, Y.; Jiang, B.; Zhang, Q.; Liu, W.; Huang, C.; and Wang, X. 2023 b . Maptrv2: An end-to-end framework for online vectorized hd map construction. arXiv preprint arXiv:2308.05736
2023 arXiv
-
[18]
Lin, T.-Y.; Doll \'a r, P.; Girshick, R.; He, K.; Hariharan, B.; and Belongie, S. 2017 a . Feature pyramid networks for object detection. In Proceedings of the IEEE conference on computer vision and pattern recognition, 2117--2125
2017
-
[19]
Lin, T.-Y.; Goyal, P.; Girshick, R.; He, K.; and Doll \'a r, P. 2017 b . Focal loss for dense object detection. In Proceedings of the IEEE international conference on computer vision, 2980--2988
2017
-
[20]
Liu, Y.; Yan, J.; Jia, F.; Li, S.; Gao, A.; Wang, T.; and Zhang, X. 2023 a . Petrv2: A unified framework for 3d perception from multi-camera images. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 3262--3272
2023
-
[21]
Liu, Y.; Yuan, T.; Wang, Y.; Wang, Y.; and Zhao, H. 2023 b . Vectormapnet: End-to-end vectorized hd map learning. In International Conference on Machine Learning, 22352--22369. PMLR
2023
-
[22]
Liu, Z.; Chen, S.; Guo, X.; Wang, X.; Cheng, T.; Zhu, H.; Zhang, Q.; Liu, W.; and Zhang, Y. 2023 c . Vision-based uneven bev representation learning with polar rasterization and surface estimation. In Conference on Robot Learning, 437--446. PMLR
2023
-
[23]
Liu, Z.; Zhang, X.; Liu, G.; Zhao, J.; and Xu, N. 2024. Leveraging Enhanced Queries of Point Sets for Vectorized Map Construction. arXiv preprint arXiv:2402.17430
2024 arXiv
-
[24]
Lu, J.; Peng, R.; Cai, X.; Xu, H.; Li, H.; Wen, F.; Zhang, W.; and Zhang, L. 2023. Translating Images to Road Network: A Non-Autoregressive Sequence-to-Sequence Approach. In Proceedings of the IEEE/CVF International Conference on Computer Vision, 23--33
2023
-
[25]
Ma, Z.; Liang, S.; Wen, Y.; Lu, W.; and Wan, G. 2024. RoadPainter: Points Are Ideal Navigators for Topology transformER. arXiv preprint arXiv:2407.15349
2024 arXiv
-
[26]
Peng, R.; Cai, X.; Xu, H.; Lu, J.; Wen, F.; Zhang, W.; and Zhang, L. 2024. LaneGraph2Seq: Lane Topology Extraction with Language Model via Vertex-Edge Encoding and Connectivity Enhancement. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 38, 4497--4505
2024
-
[27]
Vaswani, A. 2017. Attention is all you need. arXiv preprint arXiv:1706.03762
2017 arXiv
-
[28]
Wang, H.; Li, T.; Li, Y.; Chen, L.; Sima, C.; Liu, Z.; Wang, B.; Jia, P.; Wang, Y.; Jiang, S.; et al. 2024. Openlane-v2: A topology reasoning benchmark for unified 3d hd mapping. Advances in Neural Information Processing Systems, 36
2024
-
[29]
K.; et al
Wilson, B.; Qi, W.; Agarwal, T.; Lambert, J.; Singh, J.; Khandelwal, S.; Pan, B.; Kumar, R.; Hartnett, A.; Pontes, J. K.; et al. 2023. Argoverse 2: Next generation datasets for self-driving perception and forecasting. arXiv preprint arXiv:2301.00493
2023 arXiv
-
[30]
Wu, D.; Chang, J.; Jia, F.; Liu, Y.; Wang, T.; and Shen, J. 2023. Topomlp: An simple yet strong pipeline for driving topology reasoning. arXiv preprint arXiv:2310.06753
2023 arXiv
-
[31]
Zhu, X.; Su, W.; Lu, L.; Li, B.; Wang, X.; and Dai, J. 2020. Deformable detr: Deformable transformers for end-to-end object detection. arXiv preprint arXiv:2010.04159
2020 arXiv
-
[32]
, " * write output.state after.block = add.period write newline
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint howpublished institution isbn journal key month note number organization pages publisher school series title type volume year label extra.label sort.label short.list INTEGERS output.state before.all...
-
[33]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.