REVIEW 2 major objections 4 minor 43 references
LADY proposes the first fully linear attention model for end-to-end autonomous driving, aiming to fuse arbitrarily long sensor history at constant inference cost.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 06:29 UTC pith:PKFUFXBX
load-bearing objection A credible engineering contribution with a real constant-time inference story, but the memory claim needs fixing and LICA deserves an ablation. the 2 major comments →
LADY: Linear Attention for Autonomous Driving Efficiency without Transformers
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
LADY's central claim is that a fully linear attention architecture is sufficient for end-to-end planning: a recurrent block with a delta-rule hidden-state update compresses multi-frame camera and LiDAR tokens causally, and at inference each new frame is folded into a fixed-size state, so time and memory per step are constant regardless of how many frames have come before. The paper's own mechanism, LICA, performs cross-attention without a quadratic softmax: learnable query tokens are first encoded by one recurrent pass, concatenated after the fused bird's-eye-view and ego-feature sequence, and run through a second recurrent pass; the last query positions become the cross-attended queries tha
What carries the argument
Two pieces of machinery carry the argument. The backbone is a recurrent linear-attention block with a delta-rule state update: it processes token sequences causally, compressing all past tokens into a fixed-size hidden state, so the per-token cost is constant in sequence length. The paper's own contribution is LICA (lightweight linear cross-attention): to let decoder queries attend to fused scene features, the queries are first encoded by one recurrent block, then concatenated after the BEV-ego token sequence and fed through a second recurrent block; the last query-position outputs are the cross-attended queries. This converts the typical quadratic query-to-feature softmax into a single caus
Load-bearing premise
The design's success hinges on assuming that a single causal pass over the concatenated feature-and-query sequence passes all the information a bidirectional cross-attention would, even though features never look back at the queries.
What would settle it
Benchmark an identical model whose decoder cross-attention is replaced by standard quadratic attention with the same parameter count and training budget: if the quadratic version raises the planner's score on the open-loop benchmark by more than a noise-level margin, the causal design is losing information; if it does not, the linear shortcut is sufficient.
If this is right
- Long sensor history becomes nearly free at inference: a vehicle can keep a running state from every frame it has seen, so behaviors that unfold over many seconds can inform the plan at constant marginal cost.
- The same model fits on embedded vehicle computers, where transformer planners with long input windows would exceed real-time budgets.
- The quality of the generated candidate trajectories is already near-human; a better learned scorer alone could lift the model past state-of-the-art results without changing the planner.
- The framework's linear-attention backbone can be swapped for other recurrent linear-attention layers, so the efficiency property is not tied to one specific implementation.
Where Pith is reading between the lines
- The causal, one-directional nature of LICA means features never directly see the queries; if bidirectional feature-to-query information proves necessary in tricky scenes, the constant-cost property may force a compromise. An ablation replacing LICA with quadratic cross-attention would quantify this.
- The O(1) guarantee is an inference-time property; training still processes a fixed-length window in parallel, so the asymptotic advantage applies to deployment, not to the cost of fitting the model.
- The 'infinite frames' variant effectively turns the driving model into a learned state-space memory; this suggests a connection to memory-augmented world models, where the hidden state could also be used for prediction and surprise detection beyond planning.
- Since the best-of-N already exceeds human PDMS, the scoring head, not the trajectory generator, is the current ceiling; training the scorer on richer rule-based labels or closed-loop outcomes could unlock SOTA with this exact architecture.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. LADY proposes a fully linear-attention end-to-end autonomous driving model that replaces transformer attention with RWKV-7 linear attention for multi-frame camera/LiDAR fusion, and introduces LICA, a causal RWKV-7-based linear cross-attention mechanism inside a diffusion-based trajectory decoder. The paper claims constant per-frame inference cost and memory independent of history length, reports a NAVSIM PDMS of 90.9, closed-loop Bench2Drive results showing the benefit of temporal context, and validates deployment on an NVIDIA Jetson edge device.
Significance. If the efficiency and accuracy claims hold, the contribution is useful: it extends modern linear-attention sequence models to cross-modal end-to-end planning and demonstrates a constant per-frame inference overhead as historical context grows. The paper provides direct benchmark measurements, a temporal-context ablation, and edge-device validation, which are concrete strengths. However, the headline complexity claim is overstated (the recurrent state is d×d, not O(d)), and the LICA design lacks an ablation against standard cross-attention, so the central claim that linear cross-attention is an effective replacement is not yet fully supported.
major comments (2)
- [Table I, Eq. (1), Abstract] The memory complexity claim is misstated. Equation (1) defines S_t as a d×d matrix, so the recurrent temporal state requires O(d^2) memory per frame, not O(d) as listed in Table I. The abstract's 'O(1) regardless of the history length' is only true with respect to the history length T, not as an absolute constant. The time column O(Td) is a total cost over T frames, not a per-frame cost; the claimed constant per-frame cost should be stated as O(d^2) per step independent of T. Please correct the table and abstract accordingly.
- [Sec. III-B, Fig. 4] LICA is a single causal pass: feature tokens are processed first, their outputs are discarded, and query tokens never affect the feature representation. The last M query outputs see feature information only through the fixed d×d recurrent state. The statement that the state 'naturally attend[s] to both earlier feature tokens and later query tokens' is misleading for the extracted query outputs. Since LICA is a core contribution supporting 'effective cross-modal interaction', the paper needs an ablation comparing LICA against standard transformer cross-attention (or a bidirectional linear attention variant) to quantify any accuracy loss. Without such an ablation, the fully-linear design's accuracy claim is not fully supported.
minor comments (4)
- [Sec. III-A, Eq. (1), parallel form] The text says 'the rows of S∈R^{B×d} are the hidden states S_0,...,S_{B-1}', but S_t is d×d. The dimensions in this sentence are inconsistent and should be clarified.
- [Table III] The frame-number row '15' is typeset as '1598.0', merging the frame count and the numeric score; please fix the formatting.
- [Table I caption] 'start-of-the-art' should be 'state-of-the-art'; also, the footnote notation 'MT b' should be expanded and the table footnote numbering cleaned up.
- [Sec. II-B] The sentence on Mamba-2's decay, 'resulting them becoming a smaller proportion of the numerically increasing state', is grammatically unclear and should be rephrased.
Circularity Check
No significant circularity; the only author-overlapping citation (FusionAD) is background, and all load-bearing results are measured or follow from externally supported RWKV-7 equations.
full rationale
LADY's central results are direct empirical measurements on NAVSIM and Bench2Drive (Tables I and II), not derivations from fitted inputs. The claimed constant-time, constant-memory inference follows from the cited RWKV-7 recurrence (Eqs. 1–4), which is imported from the external FLA library and the RWKV-7 paper [29,40], so the linear-attention machinery is independently supported. LICA (Sec. III-B, Fig. 4) is an architectural construction—concatenating BEV-ego and query tokens in a causal RWKV-7 pass and extracting the last M outputs—not a renamed known result or a parameter fitted to a subset and then called a prediction. The absence of an ablation against standard cross-attention and the acknowledged scorer limitation (Sec. VII-G) are correctness/evidence concerns, not circularity. The only self-citation is FusionAD [17], listed among regression-based approaches; no load-bearing argument depends on it. Under the required quote-and-reduction standard, I cannot exhibit a circular step; the score reflects only the minor, non-load-bearing self-citation.
Axiom & Free-Parameter Ledger
free parameters (7)
- History length for training =
10 frames
- Number of anchor trajectories =
100
- Diffusion schedule truncation =
50 of 1000 steps
- Number of denoising steps at inference =
2
- Number of diffusion decoder layers =
2
- Learning rate and schedule =
1e-4, ReduceLROnPlateau
- Training epochs and batch size =
100 epochs, batch size 4
axioms (5)
- domain assumption The RWKV-7 delta-rule state update in Eq. (1) correctly implements linear attention and compresses all needed historical information into the d×d state S_t.
- ad hoc to paper LICA's causal concatenation of queries after feature tokens is a sufficient cross-attention substitute.
- domain assumption NAVSIM PDMS and Bench2Drive metrics are reliable proxies for real-world driving safety and performance.
- domain assumption A fixed-size recurrent state can store long-range temporal context without needing to revisit past frames.
- domain assumption The FLA library [40] implements RWKV-7 faithfully and efficiently.
read the original abstract
End-to-end autonomous driving has emerged as a promising paradigm. However, state-of-the-art methods rely heavily on Transformer architectures. The inherent quadratic complexity of Transformers restricts their ability to model long-range spatial and temporal dependencies, particularly on resource-constrained edge platforms. Given the inherent demand for efficient temporal modeling in autonomous driving, this computational bottleneck severely constrains real-time deployment. While linear attention mechanisms offer a computationally efficient alternative, existing architectures are predominantly limited to self-attention, lacking the cross-modal capabilities essential for autonomous driving. In this work, we propose LADY, the first fully linear attention-based generative model for end-to-end autonomous driving. LADY incorporates a novel, lightweight linear cross-attention (LICA) mechanism to enable effective cross-modal interaction while preserving linearity. A key advantage of our framework is its ability to fuse long-range temporal contexts during inference with constant computational and memory costs ($O(1)$), regardless of the historical sequence length. Experiments on the NAVSIM and Bench2Drive benchmarks demonstrate that LADY achieves performance comparable to state-of-the-art methods, delivering competitive planning accuracy with significantly reduced latency. Furthermore, efficiency benchmarking on edge devices validates the model's feasibility for resource-limited scenarios.
Figures
Reference graph
Works this paper leans on
-
[1]
Autonomous driving system: A comprehensive survey,
J. Zhao, W. Zhao, B. Deng, Z. Wang, F. Zhang, W. Zheng, W. Cao, J. Nan, Y . Lian, and A. F. Burke, “Autonomous driving system: A comprehensive survey,”Expert Systems with Applications, vol. 242, p. 122836, 2024
2024
-
[2]
End-to-end autonomous driving: Challenges and frontiers,
L. Chen, P. Wu, K. Chitta, B. Jaeger, A. Geiger, and H. Li, “End-to-end autonomous driving: Challenges and frontiers,”IEEE Transactions on Pattern Analysis and Machine Intelligence, vol. 46, no. 12, pp. 10 164– 10 183, 2024
2024
-
[3]
Genad: Generative end-to-end autonomous driving,
W. Zheng, R. Song, X. Guo, C. Zhang, and L. Chen, “Genad: Generative end-to-end autonomous driving,” inEuropean Conference on Computer Vision. Springer Nature Switzerland, 2025, pp. 87–104
2025
-
[4]
End- to-end autonomous driving through v2x cooperation,
H. Yu, W. Yang, J. Zhong, Z. Yang, S. Fan, P. Luo, and Z. Nie, “End- to-end autonomous driving through v2x cooperation,”Proceedings of the AAAI Conference on Artificial Intelligence, vol. 39, pp. 9598–9606, 2025
2025
-
[5]
A survey of optimization-based task and motion planning: From classical to learning approaches,
Z. Zhao, S. Cheng, Y . Ding, Z. Zhou, S. Zhang, D. Xu, and Y . Zhao, “A survey of optimization-based task and motion planning: From classical to learning approaches,”IEEE/ASME Transactions on Mechatronics, pp. 1–27, 2024
2024
-
[6]
Real-time performance-focused localization techniques for autonomous vehicle: A review,
Y . Lu, H. Ma, E. Smart, and H. Yu, “Real-time performance-focused localization techniques for autonomous vehicle: A review,”IEEE Transactions on Intelligent Transportation Systems, vol. 23, no. 7, pp. 6082–6100, 2022
2022
-
[7]
Unitr: A unified and efficient multi-modal transformer for bird’s-eye- view representation,
H. Wang, H. Tang, S. Shi, A. Li, Z. Li, B. Schiele, and L. Wang, “Unitr: A unified and efficient multi-modal transformer for bird’s-eye- view representation,” in2023 IEEE/CVF International Conference on Computer Vision (ICCV). IEEE Computer Society, 2023, pp. 6769– 6779
2023
-
[8]
Drivevlm: The convergence of au- tonomous driving and large vision-language models,
X. Tian, J. Gu, B. Li, Y . Liu, Y . Wang, Z. Zhao, K. Zhan, P. Jia, X. Lang, and H. Zhao, “Drivevlm: The convergence of au- tonomous driving and large vision-language models,”arXiv preprint arXiv:2402.12289, 2024
Pith/arXiv arXiv 2024
-
[9]
Video mamba suite: State space model as a versatile alternative for video understanding,
G. Chen, Y . Huang, J. Xu, B. Pei, Z. Chen, Z. Li, J. Wang, K. Li, T. Lu, and L. Wang, “Video mamba suite: State space model as a versatile alternative for video understanding,”arXiv preprint arXiv:2403.09626, 2024
Pith/arXiv arXiv 2024
-
[10]
A safe motion planning and reliable control framework for autonomous vehicles,
H. Pan, M. Luo, J. Wang, T. Huang, and W. Sun, “A safe motion planning and reliable control framework for autonomous vehicles,” IEEE transactions on intelligent vehicles, vol. 9, no. 4, pp. 4780– 4793, 2024
2024
-
[11]
Llm3: Large language model-based task and motion planning with motion failure reasoning,
S. Wang, M. Han, Z. Jiao, Z. Zhang, Y . N. Wu, S.-C. Zhu, and H. Liu, “Llm3: Large language model-based task and motion planning with motion failure reasoning,” in2024 IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS), 2024, pp. 12 086–12 092
2024
-
[12]
Motion planning for autonomous driving: The state of the art and future perspectives,
S. Teng, X. Hu, P. Deng, B. Li, Y . Li, Y . Ai, D. Yang, L. Li, Z. Xuanyuan, F. Zhu, and L. Chen, “Motion planning for autonomous driving: The state of the art and future perspectives,”IEEE Transac- tions on Intelligent Vehicles, vol. 8, no. 6, pp. 3692–3711, 2023
2023
-
[13]
Recent advancements in end-to-end au- tonomous driving using deep learning: A survey,
P. S. Chib and P. Singh, “Recent advancements in end-to-end au- tonomous driving using deep learning: A survey,”IEEE Transactions on Intelligent Vehicles, vol. 9, no. 1, pp. 103–118, 2023
2023
-
[14]
Is ego status all you need for open-loop end-to-end autonomous driving?
Z. Li, Z. Yu, S. Lan, J. Li, J. Kautz, T. Lu, and J. M. Alvarez, “Is ego status all you need for open-loop end-to-end autonomous driving?” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2024, pp. 14 864–14 873
2024
-
[15]
Transfuser: Imitation with transformer-based sensor fusion for au- tonomous driving,
K. Chitta, A. Prakash, B. Jaeger, Z. Yu, K. Renz, and A. Geiger, “Transfuser: Imitation with transformer-based sensor fusion for au- tonomous driving,”IEEE transactions on pattern analysis and machine intelligence, vol. 45, no. 11, pp. 12 878–12 895, 2022
2022
-
[16]
Planning-oriented autonomous driving,
Y . Hu, J. Yang, L. Chen, K. Li, C. Sima, X. Zhu, S. Chai, S. Du, T. Lin, W. Wanget al., “Planning-oriented autonomous driving,” in Proceedings of the IEEE/CVF conference on computer vision and pattern recognition, 2023, pp. 17 853–17 862
2023
-
[17]
Fusionad: Multi-modality fusion for pre- diction and planning tasks of autonomous driving,
T. Ye, W. Jing, C. Hu, S. Huang, L. Gao, F. Li, J. Wang, K. Guo, W. Xiao, W. Maoet al., “Fusionad: Multi-modality fusion for pre- diction and planning tasks of autonomous driving,”arXiv preprint arXiv:2308.01006, 2023
Pith/arXiv arXiv 2023
-
[18]
Vad: Vectorized scene representation for efficient autonomous driving,
B. Jiang, S. Chen, Q. Xu, B. Liao, J. Chen, H. Zhou, Q. Zhang, W. Liu, C. Huang, and X. Wang, “Vad: Vectorized scene representation for efficient autonomous driving,” inProceedings of the IEEE/CVF International Conference on Computer Vision, 2023, pp. 8340–8350
2023
-
[19]
Vadv2: End-to-end vectorized autonomous driving via probabilistic planning,
S. Chen, B. Jiang, H. Gao, B. Liao, Q. Xu, Q. Zhang, C. Huang, W. Liu, and X. Wang, “Vadv2: End-to-end vectorized autonomous driving via probabilistic planning,”arXiv preprint arXiv:2402.13243, 2024
Pith/arXiv arXiv 2024
-
[20]
Hydra-mdp: End-to-end multimodal planning with multi-target hydra-distillation,
Z. Li, K. Li, S. Wang, S. Lan, Z. Yu, Y . Ji, Z. Li, Z. Zhu, J. Kautz, Z. Wuet al., “Hydra-mdp: End-to-end multimodal planning with multi-target hydra-distillation,”arXiv preprint arXiv:2406.06978, 2024
Pith/arXiv arXiv 2024
-
[21]
Hydra-mdp++: Advancing end-to-end driving via expert- guided hydra-distillation,
K. Li, Z. Li, S. Lan, Y . Xie, Z. Zhang, J. Liu, Z. Wu, Z. Yu, and J. M. Alvarez, “Hydra-mdp++: Advancing end-to-end driving via expert- guided hydra-distillation,”arXiv preprint arXiv:2503.12820, 2025
Pith/arXiv arXiv 2025
-
[22]
Diffusion policy: Visuomotor policy learning via ac- tion diffusion,
C. Chi, Z. Xu, S. Feng, E. Cousineau, Y . Du, B. Burchfiel, R. Tedrake, and S. Song, “Diffusion policy: Visuomotor policy learning via ac- tion diffusion,”The International Journal of Robotics Research, p. 02783649241273668, 2023
2023
-
[23]
Diffusiondrive: Truncated diffusion model for end-to-end autonomous driving,
B. Liao, S. Chen, H. Yin, B. Jiang, C. Wang, S. Yan, X. Zhang, X. Li, Y . Zhang, Q. Zhanget al., “Diffusiondrive: Truncated diffusion model for end-to-end autonomous driving,”arXiv preprint arXiv:2411.15139, 2024
Pith/arXiv arXiv 2024
-
[24]
Drama: An efficient end-to-end motion planner for autonomous driving with mamba,
C. Yuan, Z. Zhang, J. Sun, S. Sun, Z. Huang, C. D. W. Lee, D. Li, Y . Han, A. Wong, K. P. Teeet al., “Drama: An efficient end-to-end motion planner for autonomous driving with mamba,”arXiv preprint arXiv:2408.03601, 2024
Pith/arXiv arXiv 2024
-
[25]
Mamba: Linear-time sequence modeling with selective state spaces,
A. Gu and T. Dao, “Mamba: Linear-time sequence modeling with selective state spaces,”arXiv preprint arXiv:2312.00752, 2023
Pith/arXiv arXiv 2023
-
[26]
T. Dao and A. Gu, “Transformers are ssms: Generalized models and efficient algorithms through structured state space duality,”arXiv preprint arXiv:2405.21060, 2024
Pith/arXiv arXiv 2024
-
[27]
Rwkv: Reinvent- ing rnns for the transformer era,
B. Peng, E. Alcaide, Q. Anthony, A. Albalak, S. Arcadinho, S. Bider- man, H. Cao, X. Cheng, M. Chung, M. Grellaet al., “Rwkv: Reinvent- ing rnns for the transformer era,”arXiv preprint arXiv:2305.13048, 2023
Pith/arXiv arXiv 2023
-
[28]
Eagle and finch: Rwkv with matrix-valued states and dynamic recurrence,
B. Peng, D. Goldstein, Q. Anthony, A. Albalak, E. Alcaide, S. Bider- man, E. Cheah, T. Ferdinan, H. Hou, P. Kazienkoet al., “Eagle and finch: Rwkv with matrix-valued states and dynamic recurrence,”arXiv preprint arXiv:2404.05892, vol. 3, 2024
Pith/arXiv arXiv 2024
-
[29]
B. Peng, R. Zhang, D. Goldstein, E. Alcaide, X. Du, H. Hou, J. Lin, J. Liu, J. Lu, W. Merrillet al., “Rwkv-7” goose” with expressive dynamic state evolution,”arXiv preprint arXiv:2503.14456, 2025
Pith/arXiv arXiv 2025
-
[30]
Kimi linear: An expressive, efficient attention architecture,
K. Team, “Kimi linear: An expressive, efficient attention architecture,” arXiv preprint arXiv:2510.26692, 2025
Pith/arXiv arXiv 2025
-
[31]
X. Jiang, Y . Ma, P. Li, L. Xu, X. Wen, K. Zhan, Z. Xia, P. Jia, X. Lang, and S. Sun, “Transdiffuser: End-to-end trajectory generation with decorrelated multi-modal representation for autonomous driving,” arXiv preprint arXiv:2505.09315, 2025
arXiv 2025
-
[32]
Navsim: Data-driven non-reactive autonomous vehicle simulation and benchmarking,
D. Dauner, M. Hallgarten, T. Li, X. Weng, Z. Huang, Z. Yang, H. Li, I. Gilitschenski, B. Ivanovic, M. Pavone, A. Geiger, and K. Chitta, “Navsim: Data-driven non-reactive autonomous vehicle simulation and benchmarking,” inAdvances in Neural Information Processing Systems, vol. 37, 2024, pp. 28 706–28 719
2024
-
[33]
ipad: Iterative proposal-centric end-to-end autonomous driving,
K. Guo, H. Liu, X. Wu, J. Pan, and C. Lv, “ipad: Iterative proposal-centric end-to-end autonomous driving,”arXiv preprint arXiv:2505.15111, 2025
Pith/arXiv arXiv 2025
-
[34]
Retentive network: A successor to transformer for large language models,
Y . Sun, L. Dong, S. Huang, S. Ma, Y . Xia, J. Xue, J. Wang, and F. Wei, “Retentive network: A successor to transformer for large language models,”arXiv preprint arXiv:2307.08621, 2023
Pith/arXiv arXiv 2023
-
[35]
Gated linear atten- tion transformers with hardware-efficient training,
S. Yang, B. Wang, Y . Shen, R. Panda, and Y . Kim, “Gated linear atten- tion transformers with hardware-efficient training,” inProceedings of the 41st International Conference on Machine Learning, 2024, p. 23
2024
-
[36]
Linear transformers are secretly fast weight programmers,
I. Schlag, K. Irie, and J. Schmidhuber, “Linear transformers are secretly fast weight programmers,” inInternational conference on machine learning, 2021, pp. 9355–9366
2021
-
[37]
Adaptive switching circuits,
B. Widrow and M. E. Hoff, “Adaptive switching circuits,” inNeuro- computing: foundations of research. MIT Press, 1988, pp. 123–134
1988
-
[38]
Parallelizing linear transformers with the delta rule over sequence length,
S. Yang, B. Wang, Y . Zhang, Y . Shen, and Y . Kim, “Parallelizing linear transformers with the delta rule over sequence length,”arXiv preprint arXiv:2406.06484, 2024
Pith/arXiv arXiv 2024
-
[39]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” Advances in neural information processing systems, vol. 30, 2017
2017
-
[40]
Fla: A triton-based library for hardware- efficient implementations of linear attention mechanism,
S. Yang and Y . Zhang, “Fla: A triton-based library for hardware- efficient implementations of linear attention mechanism,” 2024. [Online]. Available: https://github.com/fla-org/flash-linear-attention
2024
-
[41]
Deep residual learning for image recognition,
K. He, X. Zhang, S. Ren, and J. Sun, “Deep residual learning for image recognition,” inProceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016
2016
-
[42]
Carla: An open urban driving simulator,
A. Dosovitskiy, G. Ros, F. Codevilla, A. Lopez, and V . Koltun, “Carla: An open urban driving simulator,” inConference on robot learning, 2017, pp. 1–16
2017
-
[43]
Bench2drive: Towards multi-ability benchmarking of closed-loop end-to-end autonomous driving,
X. Jia, Z. Yang, Q. Li, Z. Zhang, and J. Yan, “Bench2drive: Towards multi-ability benchmarking of closed-loop end-to-end autonomous driving,”Advances in Neural Information Processing Systems, vol. 37, pp. 819–844, 2024
2024
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.