REVIEW 2 major objections 5 minor 80 references
FourTune makes end-to-end 4-bit post-training of large diffusion models match full-precision quality while cutting memory and raising throughput.
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 →
FourTune matches full-precision LoRA quality on diffusion post-training via native W4A4G4 with a frozen SVD stabilizer, block-wise quant, and fused kernels, cutting memory 2.25× and speeding training 2.27× on FLUX.1-dev.
T0 review reviewed 2026-07-11 challenge →
load-bearing objection Solid systems result: first stable end-to-end W4A4G4 post-training for large diffusion models that matches BF16 LoRA quality while beating the QLoRA memory-speed trade-off on Blackwell; main soft spot is under-specified stabilizer rank, not a broken claim. the 2 major comments →
FourTune: Towards Fully 4-Bit Efficient Post-Training for Diffusion Models
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
Core claim
A triple-branch hybrid pipeline—frozen 4-bit residual backbone, frozen full-precision low-rank stabilizer, and trainable LoRA—makes native W4A4G4 forward and backward passes numerically stable for large diffusion models, so that post-training quality matches full-precision LoRA while memory falls and training throughput rises substantially.
What carries the argument
The triple-branch hybrid-precision pipeline: after SVD decomposition W ≈ R + L_stab, the residual R is quantized to 4-bit, L_stab is kept frozen in high precision as a numerical stabilizer, and a trainable LoRA branch adapts the model; block-wise 16×16 quantization plus fused kernels then enable direct 4-bit transposed GEMMs in the backward pass.
Load-bearing premise
A frozen low-rank full-precision stabilizer taken from an SVD of the pretrained weights is enough to keep native 4-bit forward and backward passes stable and able to reach full-precision task quality.
What would settle it
Remove the stabilizer branch, retrain under the same W4A4G4 schedule on the reported customization, RL or distillation tasks, and check whether gradient norms explode (as in the paper’s ablation) and final similarity, aesthetic, or FID metrics fall well below the BF16 LoRA baseline.
If this is right
- Post-training of 12B–20B diffusion models becomes feasible on consumer Blackwell GPUs with roughly half the memory of BF16 LoRA.
- Customization, preference RL, and few-step distillation can all be run under the same W4A4G4 stack without separate precision recipes.
- Once the stabilizer is pre-computed, the dominant backbone arithmetic stays in 4-bit Tensor Cores for both forward and backward passes.
- Block-wise quantization removes the need to dequantize and re-quantize weights when forming the transposed product in the backward pass.
Where Pith is reading between the lines
- The same stabilizer-plus-residual pattern may transfer to other PEFT methods beyond LoRA if their adapters remain low-rank and full-precision.
- If the SVD stabilizer rank is small enough, the approach could also shrink the memory of full-parameter fine-tuning by quantizing only the residual.
- Hardware that already ships native 4-bit GEMMs (Blackwell, future consumer parts) becomes the practical enabler; older architectures would need a different kernel stack.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. FourTune proposes an end-to-end W4A4G4 post-training framework for large diffusion models. It augments LoRA with a frozen full-precision low-rank stabilizer obtained by SVD of the pretrained weights (Eq. 1–2, §3.1), so that the residual backbone can be quantized to NVFP4 and executed natively in 4-bit for both forward and backward passes. Block-wise (16×16) quantization enables efficient online transposition of 4-bit weights during backpropagation, and fused kernels reduce memory traffic for the LoRA and MLP paths. Experiments on customization (FLUX.1-dev 12B and Qwen-Image 20B), SRPO reinforcement learning, and π-Flow distillation report generation quality matching BF16 LoRA, with claimed 2.25× memory reduction and 2.27× end-to-end training throughput on FLUX.1-dev versus BF16 LoRA. Ablations address precision configurations, stabilizer presence, quantization granularity, and kernel fusion.
Significance. If the quality-matching and efficiency claims hold under fully specified hyperparameters, the work would be a useful systems contribution: it is the first reported native W4A4G4 post-training pipeline for large generative models, and it demonstrates practical speedups on Blackwell hardware while remaining competitive with BF16 LoRA across three distinct post-training regimes. Strengths include multi-task evaluation (customization, RL, distillation), multi-model scale (12B and 20B), explicit efficiency breakdowns (memory and latency), and ablations that isolate the stabilizer, block-wise quantization, and kernel fusion. The approach builds cleanly on SVDQuant for the residual/stabilizer split and on hardware-friendly formats (NVFP4/INT4). The main open question is whether the quality match is robust to the (currently unreported) stabilizer rank, which determines residual dynamic range and thus how much of the numerical burden is carried by the frozen full-precision path.
major comments (2)
- [§3.1, Eq. (1)–(2); Fig. 8] §3.1, Eq. (1)–(2) and the stabilizer ablation (Fig. 8): the frozen low-rank stabilizer L_stab = L1 L2 is load-bearing for numerical stability under native 4-bit training; without it, gradient norms explode. The manuscript never states the SVD rank (or energy retained) used for L_stab, nor residual max/scale statistics after decomposition. Without these numbers it is impossible to judge whether residual 4-bit representability is robust or an artifact of a high-rank full-precision path that absorbs most outliers. Please report rank (or rank schedule), residual dynamic-range statistics, and at least a one-dimensional sensitivity study over stabilizer rank on one task (e.g., identity customization or the distillation gradient-norm setting).
- [Abstract; Fig. 1; §4.2] Efficiency claims (abstract, Fig. 1, §4.2): the headline 2.25× memory and 2.27× throughput figures are end-to-end on FLUX customization, while DiT-only numbers are stronger (2.93× weight memory, 2.52× step latency). The contribution of the frozen stabilizer’s full-precision storage and GEMMs to the memory and latency budgets is not broken out. Please add a memory/latency decomposition that isolates residual 4-bit weights, stabilizer, LoRA adapters, activations, and optimizer state so that the net gain of the triple-branch design versus pure W4A4G4 (or versus QLoRA) is transparent.
minor comments (5)
- [Table 1] Table 1: several metrics for Ours are slightly better or worse than BF16 LoRA without error bars or multi-seed statistics; a short note on variance (or at least that numbers are single-run) would strengthen the “matches quality” claim.
- [§3.2] §3.2: the argument that block-wise scales remain valid after online transposition is clear, but a short pseudocode or kernel sketch of the transposed 4-bit GEMM would help readers implement the idea.
- [Appendix B] Appendix B (SDXL and INT4/RTX 4090) is valuable for generality; consider moving a one-sentence summary into the main text so the claim is not buried.
- [Fig. 3] Figure 3 caption and surrounding text: clarify whether the stabilizer is applied to every linear layer or only selected modules (e.g., attention vs. MLP).
- [§3.1] Minor notation: Q(·) is used for both offline residual quantization and dynamic activation quantization; a brief distinction would avoid ambiguity.
Circularity Check
No significant circularity: empirical systems paper whose quality/speed claims are measured against external baselines; minor self-citation of SVDQuant decomposition as a reusable building block, not a load-bearing uniqueness claim.
specific steps
-
self citation load bearing
[§3.1, Eq. (1) and surrounding text]
"Formally, building upon the spectral decomposition from SVDQuant (Li et al., 2025), we decompose the pre-trained weight matrix W∈R m×n into a quantization-friendly residual R and a low-rank outlier component L stab: W≈R+L stab,where L stab =L 1L2."
The stabilizer construction that makes native W4A4G4 training stable is taken from prior work by overlapping authors (SVDQuant). The citation is not a uniqueness theorem and the paper supplies its own ablation (Fig. 8) showing necessity; still, the load-bearing numerical-stability premise rests partly on that self-citation rather than being derived independently here. Minor and non-central to the empirical quality claims.
full rationale
FourTune is an engineering/systems paper. Its central claims (W4A4G4 quality matching BF16 LoRA on customization/RL/distillation, plus measured 2.25× memory and 2.27× throughput gains) are established by direct experimental comparison to external full-precision and QLoRA baselines using public-style metrics (AntelopeV2, CLIP, DINOv3, HPSv2.1, FID, etc.). There is no first-principles derivation, fitted constant renamed as prediction, or self-definitional loop. The only self-citation of note is the reuse of the SVD residual+outlier decomposition from SVDQuant (Li et al., 2025, overlapping authors) to construct the frozen stabilizer L_stab in Eq. 1–2. That citation supplies a known technique for isolating outliers; the paper then shows empirically (Fig. 8 ablation) that the stabilizer prevents gradient explosion under native 4-bit training and that the overall pipeline matches full-precision task quality. This is ordinary method reuse, not a circular reduction of the result to its inputs, nor an imported uniqueness theorem that forbids alternatives. Stabilizer rank is under-specified (a correctness/reproducibility concern), but that does not create circularity. Score 1 reflects only the minor overlapping-author citation of a prior method; the derivation chain itself is non-circular and self-contained against external benchmarks.
Axiom & Free-Parameter Ledger
free parameters (4)
- LoRA rank r
- Block-wise quantization granularity
- Stabilizer rank / SVD truncation
- Quantization format and scales (NVFP4 / INT4)
axioms (4)
- domain assumption Low-rank adapters (LoRA) can match full fine-tuning quality for diffusion post-training when the backbone is frozen.
- domain assumption SVD can separate quantization-sensitive outliers into a small full-precision factor so the residual is 4-bit friendly (from SVDQuant).
- domain assumption NVIDIA Blackwell (and related) 4-bit tensor cores correctly implement the intended W4A4G4 GEMMs used for timing.
- ad hoc to paper Block-local scales remain valid after online transposition of 4-bit weight blocks.
invented entities (1)
-
Frozen numerical stabilizer branch in a triple-branch W4A4G4 training pipeline
no independent evidence
Cite this review
Pith. "Pith review of FourTune: Towards Fully 4-Bit Efficient Post-Training for Diffusion Models." pith.science (2026). https://pith.science/paper/QKRTTKWU
@misc{pith2026260705711,
author = {Pith},
title = {Pith review of: FourTune: Towards Fully 4-Bit Efficient Post-Training for Diffusion Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/QKRTTKWU}},
note = {Machine review of arXiv:2607.05711}
}
read the original abstract
Diffusion models have become a dominant paradigm for high-quality generative modeling, while post-training is essential for adapting them to diverse downstream applications. However, post-training of large diffusion models is still challenging due to the prohibitive memory footprints and slow training speed, which existing parameter-efficient fine-tuning methods only partially address. To overcome these limitations, we propose FourTune, an efficient post-training framework for diffusion models based on an end-to-end W4A4G4 paradigm. FourTune introduces a triple-branch hybrid pipeline that augments the standard LoRA architecture with a frozen numerical stabilizer to isolate quantization-sensitive outliers, enabling stable training under native 4-bit computation. In addition, FourTune employs hardware-efficient block-wise quantization and customized fused kernels to support efficient quantized backpropagation and reduce memory bandwidth overhead. Across customization, reinforcement learning, and distillation tasks, FourTune matches the quality of full-precision fine-tuning. On FLUX.1-dev (12B), FourTune reduces memory overhead by 2.25$\times$ and increases end-to-end training throughput by 2.27$\times$ compared to BF16 LoRA.
Figures
Reference graph
Works this paper leans on
-
[1]
High-Resolution Image Synthesis with Latent Diffusion Models , booktitle = CVPR, year =
Robin Rombach and Andreas Blattmann and Dominik Lorenz and Patrick Esser and Bj. High-Resolution Image Synthesis with Latent Diffusion Models , booktitle = CVPR, year =
-
[2]
Dustin Podell and Zion English and Kyle Lacey and Andreas Blattmann and Tim Dockhorn and Jonas M
-
[3]
Yuwei Guo and Ceyuan Yang and Anyi Rao and Zhengyang Liang and Yaohui Wang and Yu Qiao and Maneesh Agrawala and Dahua Lin and Bo Dai , title =
-
[4]
Andreas Blattmann and Tim Dockhorn and Sumith Kulal and Daniel Mendelevitch and Maciej Kilian and Dominik Lorenz and Yam Levi and Zion English and Vikram Voleti and Adam Letts and Varun Jampani and Robin Rombach , title =. ArXiv preprint , year =
-
[5]
William Peebles and Saining Xie , title =
-
[6]
Kwok and Ping Luo and Huchuan Lu and Zhenguo Li , title =
Junsong Chen and Jincheng Yu and Chongjian Ge and Lewei Yao and Enze Xie and Zhongdao Wang and James T. Kwok and Ping Luo and Huchuan Lu and Zhenguo Li , title =
-
[7]
Qwen-Image Technical Report , journal =
-
[8]
2025 , howpublished=
work page 2025
-
[9]
Enze Xie and Junsong Chen and Junyu Chen and Han Cai and Haotian Tang and Yujun Lin and Zhekai Zhang and Muyang Li and Ligeng Zhu and Yao Lu and Song Han , title =
-
[10]
Z-Image: An Efficient Image Generation Foundation Model with Single-Stream Diffusion Transformer , journal =
-
[11]
Wan: Open and Advanced Large-Scale Video Generative Models , journal =
-
[12]
Zhuoyi Yang and Jiayan Teng and Wendi Zheng and Ming Ding and Shiyu Huang and Jiazheng Xu and Yuanming Yang and Wenyi Hong and Xiaohan Zhang and Guanyu Feng and Da Yin and Yuxuan Zhang and Weihan Wang and Yean Cheng and Bin Xu and Xiaotao Gu and Yuxiao Dong and Jie Tang , title =
- [13]
-
[14]
HunyuanVideo 1.5 Technical Report , journal =
-
[15]
Multi-Concept Customization of Text-to-Image Diffusion , booktitle = CVPR, year =
Nupur Kumari and Bingliang Zhang and Richard Zhang and Eli Shechtman and Jun. Multi-Concept Customization of Text-to-Image Diffusion , booktitle = CVPR, year =
-
[16]
Nataniel Ruiz and Yuanzhen Li and Varun Jampani and Yael Pritch and Michael Rubinstein and Kfir Aberman , title =
-
[17]
Rinon Gal and Yuval Alaluf and Yuval Atzmon and Or Patashnik and Amit Haim Bermano and Gal Chechik and Daniel Cohen. An Image is Worth One Word: Personalizing Text-to-Image Generation using Textual Inversion , booktitle = ICLR, year =
- [18]
-
[19]
Aligning Text-to-Image Diffusion Models with Reward Backpropagation , journal =
Mihir Prabhudesai and Anirudh Goyal and Deepak Pathak and Katerina Fragkiadaki , year =. Aligning Text-to-Image Diffusion Models with Reward Backpropagation , journal =
-
[20]
Mihir Prabhudesai and Russell Mendonca and Zheyang Qin and Katerina Fragkiadaki and Deepak Pathak , title =. ArXiv preprint , year =
-
[21]
Jiazheng Xu and Xiao Liu and Yuchen Wu and Yuxuan Tong and Qinkai Li and Ming Ding and Jie Tang and Yuxiao Dong , title =
-
[22]
Xiangwei Shen and Zhimin Li and Zhantao Yang and Shiyi Zhang and Yingfang Zhang and Donghao Li and Chunyu Wang and Qinglin Lu and Yansong Tang , title =. ArXiv preprint , year =
-
[23]
SRPO: Self-Referential Policy Optimization for Vision-Language-Action Models , author=. 2025 , journal =
work page 2025
-
[24]
Kevin Black and Michael Janner and Yilun Du and Ilya Kostrikov and Sergey Levine , title =
- [25]
-
[26]
Ying Fan and Olivia Watkins and Yuqing Du and Hao Liu and Moonkyung Ryu and Craig Boutilier and Pieter Abbeel and Mohammad Ghavamzadeh and Kangwook Lee and Kimin Lee , title =
-
[27]
Jie Liu and Gongye Liu and Jiajun Liang and Yangguang Li and Jiaheng Liu and Xintao Wang and Pengfei Wan and Di Zhang and Wanli Ouyang , title =. 2025 , journal =
work page 2025
-
[28]
Yibin Wang and Zhimin Li and Yuhang Zang and Yujie Zhou and Jiazi Bu and Chunyu Wang and Qinglin Lu and Cheng Jin and Jiaqi Wang , title =. ArXiv preprint , year =
-
[29]
Zeyue Xue and Jie Wu and Yu Gao and Fangyuan Kong and Lingting Zhu and Mengzhao Chen and Zhiheng Liu and Wei Liu and Qiushan Guo and Weilin Huang and Ping Luo , title =. ArXiv preprint , year =
- [30]
-
[31]
Tim Salimans and Thomas Mensink and Jonathan Heek and Emiel Hoogeboom , title =
-
[32]
Xingchao Liu and Chengyue Gong and Qiang Liu , title =
-
[33]
Xingchao Liu and Xiwen Zhang and Jianzhu Ma and Jian Peng and Qiang Liu , title =
-
[34]
Kevin Frans and Danijar Hafner and Sergey Levine and Pieter Abbeel , title =
-
[35]
Guibas and Gordon Wetzstein and Sai Bi , title =
Hansheng Chen and Kai Zhang and Hao Tan and Leonidas J. Guibas and Gordon Wetzstein and Sai Bi , title =. ArXiv preprint , year =
-
[36]
Song, Yang and Dhariwal, Prafulla and Chen, Mark and Sutskever, Ilya , title =
-
[37]
Jiatao Gu and Chen Wang and Shuangfei Zhai and Yizhe Zhang and Lingjie Liu and Joshua M. Susskind , title =
-
[38]
Consistency Trajectory Models: Learning Probability Flow
Dongjun Kim and Chieh. Consistency Trajectory Models: Learning Probability Flow
-
[39]
Yang Song and Prafulla Dhariwal , title =
-
[40]
Zhengyang Geng and Ashwini Pokle and Weijian Luo and Justin Lin and J. Zico Kolter , title =
-
[41]
Flow map matching with stochastic interpolants:
Nicholas Matthew Boffi and Michael Samuel Albergo and Eric Vanden. Flow map matching with stochastic interpolants:. Trans. Mach. Learn. Res. , year =
-
[42]
One-Step Diffusion with Distribution Matching Distillation , booktitle = CVPR, year =
Tianwei Yin and Micha. One-Step Diffusion with Distribution Matching Distillation , booktitle = CVPR, year =
-
[43]
Improved Distribution Matching Distillation for Fast Image Synthesis , booktitle = NeurIPS, year =
Tianwei Yin and Micha. Improved Distribution Matching Distillation for Fast Image Synthesis , booktitle = NeurIPS, year =
-
[44]
Axel Sauer and Dominik Lorenz and Andreas Blattmann and Robin Rombach , title =
-
[45]
Mingyuan Zhou and Huangjie Zheng and Zhendong Wang and Mingzhang Yin and Hai Huang , title =
-
[46]
Weijian Luo and Zemin Huang and Zhengyang Geng and J. Zico Kolter and Guo. One-Step Diffusion Distillation through Score Implicit Matching , booktitle = NeurIPS, year =
-
[47]
Linqi Zhou and Stefano Ermon and Jiaming Song , title =
-
[48]
Hu and Yelong Shen and Phillip Wallis and Zeyuan Allen
Edward J. Hu and Yelong Shen and Phillip Wallis and Zeyuan Allen. LoRA: Low-Rank Adaptation of Large Language Models , booktitle = ICLR, year =
-
[49]
Vera Soboleva and Aibek Alanov and Andrey Kuznetsov and Konstantin Sobolev , title =. ArXiv preprint , year =
-
[50]
Qingru Zhang and Minshuo Chen and Alexander Bukharin and Pengcheng He and Yu Cheng and Weizhu Chen and Tuo Zhao , title =
-
[51]
Soufiane Hayou and Nikhil Ghosh and Bin Yu , title =
-
[52]
DoRA: Weight-Decomposed Low-Rank Adaptation , booktitle = ICML, year =
Shih. DoRA: Weight-Decomposed Low-Rank Adaptation , booktitle = ICML, year =
- [53]
-
[54]
Xiuyu Li and Yijiang Liu and Long Lian and Huanrui Yang and Zhen Dong and Daniel Kang and Shanghang Zhang and Kurt Keutzer , title =
-
[55]
Yuzhang Shang and Zhihang Yuan and Bin Xie and Bingzhe Wu and Yan Yan , title =
-
[56]
Muyang Li and Yujun Lin and Zhekai Zhang and Tianle Cai and Xiuyu Li and Junxian Guo and Enze Xie and Chenlin Meng and Jun. SVDQuant: Absorbing Outliers by Low-Rank Component for 4-Bit Diffusion Models , booktitle = ICLR, year =
- [57]
-
[58]
Wei Huang and Yi Ge and Shuai Yang and Yicheng Xiao and Huizi Mao and Yujun Lin and Hanrong Ye and Sifei Liu and Ka Chun Cheung and Hongxu Yin and Yao Lu and Xiaojuan Qi and Song Han and Yukang Chen , title =. ArXiv preprint , year =
-
[59]
Tim Dettmers and Artidoro Pagnoni and Ari Holtzman and Luke Zettlemoyer , title =
-
[60]
Yixiao Li and Yifan Yu and Chen Liang and Nikos Karampatziakis and Pengcheng He and Weizhu Chen and Tuo Zhao , title =
-
[61]
Yuhui Xu and Lingxi Xie and Xiaotao Gu and Xin Chen and Heng Chang and Hengheng Zhang and Zhengsu Chen and Xiaopeng Zhang and Qi Tian , title =
-
[62]
InsightFace Python Library (Model Zoo: antelopev2) , author =. 2022 , howpublished =
work page 2022
-
[63]
ArcFace: Additive Angular Margin Loss for Deep Face Recognition , author =
-
[64]
Alec Radford and Jong Wook Kim and Chris Hallacy and Aditya Ramesh and Gabriel Goh and Sandhini Agarwal and Girish Sastry and Amanda Askell and Pamela Mishkin and Jack Clark and Gretchen Krueger and Ilya Sutskever , title =
- [65]
-
[66]
Xiaoshi Wu and Yiming Hao and Keqiang Sun and Yixiong Chen and Feng Zhu and Rui Zhao and Hongsheng Li , title =. ArXiv preprint , year =
- [67]
-
[68]
Yuval Kirstain and Adam Polyak and Uriel Singer and Shahbuland Matiana and Joe Penna and Omer Levy , title =
-
[69]
ImageReward: Learning and Evaluating Human Preferences for Text-to-Image Generation , author =
-
[70]
Zhiqiu Lin and Deepak Pathak and Baiqi Li and Jiayao Li and Xide Xia and Graham Neubig and Pengchuan Zhang and Deva Ramanan , title =
-
[71]
Howard and Hartwig Adam and Dmitry Kalenichenko , title =
Benoit Jacob and Skirmantas Kligys and Bo Chen and Menglong Zhu and Matthew Tang and Andrew G. Howard and Hartwig Adam and Dmitry Kalenichenko , title =
- [72]
-
[73]
Microscaling Data Formats for Deep Learning , journal =
Bita Darvish Rouhani and Ritchie Zhao and Ankit More and Mathew Hall and Alireza Khodamoradi and Summer Deng and Dhruv Choudhary and Marius Cornea and Eric Dellinger and Kristof Denolf and Dusan Stosic and Venmugil Elango and Maximilian Golub and Alexander Heinecke and Phil James. Microscaling Data Formats for Deep Learning , journal =
-
[74]
Navigating Text-To-Image Customization: From Ly
SHIH-YING YEH and Yu-Guan Hsieh and Zhidong Gao and Bernard B W Yang and Giyeong Oh and Yanmin Gong , booktitle=ICLR, year=. Navigating Text-To-Image Customization: From Ly
-
[75]
Chaofeng Chen and Jiadi Mo , year=
-
[76]
Junnan Li and Dongxu Li and Caiming Xiong and Steven C. H. Hoi , editor =
-
[77]
International Joint Conference on Natural Language Processing , year =
Armen Aghajanyan and Sonal Gupta and Luke Zettlemoyer , title =. International Joint Conference on Natural Language Processing , year =
-
[78]
Neil Houlsby and Andrei Giurgiu and Stanislaw Jastrzebski and Bruna Morrone and Quentin de Laroussilhe and Andrea Gesmundo and Mona Attariyan and Sylvain Gelly , title =
-
[79]
Chengsong Huang and Qian Liu and Bill Yuchen Lin and Tianyu Pang and Chao Du and Min Lin , title =. ArXiv preprint , year =
-
[80]
Plataniotis and Amir Yazdanbakhsh and Kurt Keutzer and Song Han and Zhijian Liu , title =
Samir Khaki and Xiuyu Li and Junxian Guo and Ligeng Zhu and Konstantinos N. Plataniotis and Amir Yazdanbakhsh and Kurt Keutzer and Song Han and Zhijian Liu , title =
This paper was first reviewed by grok-4.5 on July 11, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.