REVIEW 3 major objections 4 minor 16 references
A $600 training run yields 1024px text-to-image
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 →
A consumer-grade diffusion model trains on four RTX5090 GPUs for $535-620 and produces 1024x1024 anime-style images, claiming competitive quality and emergent camera control.
T0 review reviewed 2026-08-05 challenge →
load-bearing objection A credible and refreshingly honest low-budget training recipe for T2I diffusion; the abstract oversells 'competitive quality' but the body delivers a useful existence proof with released code and model. the 3 major comments →
Home-made Diffusion Model from Scratch to Hatch
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
The central claim is that XUT's cross-attention skip connections give the decoder context-dependent access to encoder features, improving compositional consistency, and that training on randomly shifted square crops with a normalized position map teaches the model to inherit spatial control, so that at inference the position map acts as a camera. The paper demonstrates this on Danbooru2023 (7.6M images) with a 343M XUT-base model using Qwen3-0.6B text embeddings, a fine-tuned SDXL VAE, a flow-matching objective, and TREAD at 50% token selection, reaching 1024x1024 after a 385-hour schedule on four RTX5090s. The contribution is framed as an existence proof: a competitive text-to-image model c
What carries the argument
Two load-bearing components carry the argument. The first is the Cross-U-Transformer (XUT), which replaces concatenation-based skip connections with cross-attention between symmetric encoder and decoder depths, letting the decoder selectively attend to encoder features based on the current decoding context. The second is the shifted square crop with a position map: each training image is resized so the short side equals the target size, a random square crop is taken, and a 2D axial RoPE position map whose per-axis ranges are sqrt(H/W) and sqrt(W/H) is attached to the latent. TREAD token routing (50% selection during most stages, 0% at the final 1024 stage) provides convergence acceleration,
Load-bearing premise
The central claims rest on the untested assumption that the architecture and training components—cross-attention skips, shifted square crop, and positional encoding—are the causes of the observed quality and control, since the report includes no ablations or baseline comparisons.
What would settle it
Run the identical 385-hour training schedule with XUT's cross-attention skips replaced by concatenation skips at the same compute, dataset, and seed budget; if composition consistency under prompt edits and camera-control scores are unchanged, the paper's central attribution is undercut. A weaker test is to measure pairwise structural similarity across seed-matched prompt edits for XUT versus a concatenation-skip baseline.
If this is right
- A 1024x1024 text-to-image model can be trained for $535-620 on four RTX5090s, lowering the financial barrier by roughly an order of magnitude compared with data-center runs.
- XUT's cross-attention skips yield consistent global composition when prompt attributes are swapped under a fixed seed, enabling fine-grained attribute editing without retraining.
- Training on shifted square crops with position maps produces arbitrary aspect-ratio generation at inference and lets users pan and zoom by editing the position map.
- Using different TREAD selection rates for conditional and unconditional prompts provides auto-guidance at inference without an extra model.
- The recipe supports larger future datasets (40M+ images) because it avoids latent/text caching and relies on on-the-fly preprocessing.
Where Pith is reading between the lines
- Without an ablation, the compositional consistency attributed to XUT could in principle be produced by the shifted-crop/position-map training or by the dataset; a controlled XUT-versus-concatenation-skip comparison at equal budget is the decisive missing test.
- The camera-control mechanism follows from normalizing positions by aspect ratio, suggesting that any model trained with such position maps—not just anime-domain models—should exhibit similar pan/zoom control.
- A frozen or lightly trained small causal language model with no position embedding may be sufficient as a text encoder for T2I, further cutting memory and cost if validated against CLIP/T5 at equal scale.
- If reproducible, the recipe implies that the bottleneck for individual T2I research shifts from GPU cost to data quality and curation.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces HDM, a text-to-image diffusion model designed to be trained on consumer hardware. The main technical proposals are: (i) XUT, a U-shaped transformer that replaces concatenation/additive skip connections with cross-attention; (ii) a shifted square crop training strategy with position maps, enabling arbitrary aspect ratios and emergent camera control; and (iii) a progressive-resolution recipe (256²→1024²) using TREAD acceleration, an SDXL/EQ-VAE latent space, and a Qwen3-0.6B text encoder. The paper reports a training cost of $535–620 on four RTX5090 GPUs over 385 GPU-hours and presents qualitative examples for prompt-consistency and position-map manipulation. Section C explicitly reframes the contribution as an existence proof and acknowledges that no extensive ablation or benchmarking was performed.
Significance. If substantiated, the existence proof is valuable: it shows that a 343M-parameter latent diffusion transformer can be trained for roughly $600 on consumer hardware, and the shifted-crop position-map camera control is a genuinely interesting emergent phenomenon. The paper also ships code and model weights, which strengthens reproducibility. However, the headline claims—'competitive 1024×1024 generation quality', 'superior feature integration', and 'remarkable compositional consistency'—are not supported by the evidence in the current manuscript. The qualitative examples are useful but curated, and the paper itself concedes in Section C that it cannot claim superiority over UViT/HDiT-style baselines without a comparative analysis. The paper is best received as a reproducible existence proof, not yet as a validated architecture contribution.
major comments (3)
- [Abstract; Section 5; Section C] The abstract claims 'competitive 1024×1024 generation quality', but Section 5 and Appendix B provide only a handful of selected images. There are no quantitative metrics (FID, CLIP score, human preference), no comparison baselines, and no negative examples. Section C explicitly states that the model was not benchmarked against established metrics. This is load-bearing because 'competitive' is the central quality claim. Either add a quantitative comparison (even on a small set with standard metrics) or rewrite the abstract/conclusion to claim only a feasible low-cost existence proof.
- [Section 3.1; Section 5.1; Section C] The paper attributes the observed 'compositional consistency' to XUT's cross-attention skip connections, and the abstract claims that cross-attention provides 'superior feature integration'. No controlled comparison is provided against UViT, HDiT, or a matched transformer with concatenation/additive skip connections. Section C states: 'we cannot definitively claim its superiority over alternative U-shaped transformer designs.' This admission is in tension with the core contribution as presented in Sections 1 and 3.1. A matched ablation, at least at 256² resolution with the same training recipe, is needed to isolate the effect of XUT; otherwise the observed behaviors could equally arise from the shifted-crop/position-map training or the overall recipe.
- [Section 3.4, Eq. (15); Appendix A.1] There is a concrete inconsistency in the definition of the position map. Eq. (15) defines P[i,j] = (i·rH/Hresized, j·rW/Wresized), which ranges from 0 to rH/rW and is not centered at zero. The reference implementation in Appendix A.1 uses linspace(-h_range, h_range, h) and linspace(-w_range, w_range, w), i.e., values centered at zero with negative and positive extents. These two definitions imply different semantics for 'camera' translation and zoom in Section 3.7 and are not interchangeable. Since the emergent camera-control claim rests on this mechanism, the paper must specify the exact normalization—including whether the position map is centered, scaled to [-rH, rH] etc.—and make Eq. (15) and the code consistent.
minor comments (4)
- [Section 4.3] The energy figure is implausible as stated. 385 training hours on four RTX5090 GPUs would consume several hundred kWh under realistic load, not ~125 kWh 'across four RTX5090 GPUs'. Please clarify whether this is per-GPU, excludes non-GPU power, or is a corrected measurement.
- [Section 3.6] Pixtral-11M is likely a typo for a model with a much larger scale (e.g., Pixtral-12B). Please verify the model name.
- [Abstract] The phrase 'Cross-U-Transformer (XUT), a novel U-shape transformer, Cross-U-Transformer (XUT)' is repeated; the abstract should be copy-edited.
- [Section 3.2] The text says HDM 'directly concatenates text and image features as input to the entire backbone' but then says it 'retains adaLN for conditional information'. Please clarify what conditioning information goes to adaLN and what is concatenated as tokens, because Eq. (8) refers to 'other conditioning information'.
Circularity Check
No circular derivation: the cost and training-recipe claims are direct measurements, and the unsupported XUT-quality attribution is an empirical gap, not a logical circle.
full rationale
The paper does not disguise a fitted quantity as a prediction or derive a conclusion from its own definition. The training cost ($535–620) is computed from wall-clock hours and rental prices; the position-map/camera-control behavior is shown through image examples and follows from explicit conditioning on normalized coordinate maps, not from an equation that assumes the result. The abstract's assertion that XUT cross-attention skip connections yield 'remarkable compositional consistency' is not backed by ablation, but Section C explicitly concedes: 'we have not conducted extensive ablation studies or benchmarked our model against established metrics' and 'we cannot definitively claim its superiority over alternative U-shaped transformer designs.' That is an unsupported empirical claim, not circularity: no parameter was fitted to the claimed outcome and then renamed as a prediction. The positional-encoding constraints (Eqs. 10–12) are solved self-consistently from stated definitions, and the shifted-square-crop procedure is specified independently of the emergent behaviors it is said to explain. No self-citation chain is load-bearing, no uniqueness theorem is imported from the authors, and no ansatz is smuggled in via citation. The main weakness is missing comparative evaluation, which the paper itself flags; that affects evidentiary strength, not logical circularity.
Axiom & Free-Parameter Ledger
free parameters (1)
- Position map normalization =
r_H * r_W = 1.0
axioms (5)
- standard math Flow matching objective (Eq 4) provides a valid training signal for generative modeling
- domain assumption The SDXL VAE fine-tuned with EQ-VAE yields a latent space more suitable for diffusion than standard VAEs
- domain assumption TREAD token routing accelerates convergence without degrading final quality
- domain assumption The Danbooru2023 dataset with Pixtral-generated captions is sufficient to train a competitive text-to-image model
- ad hoc to paper A handful of curated generated images is evidence of competitive quality
Cite this review
Pith. "Pith review of Home-made Diffusion Model from Scratch to Hatch." pith.science (2026). https://pith.science/paper/MVJWM4GW
@misc{pith2026250906068,
author = {Pith},
title = {Pith review of: Home-made Diffusion Model from Scratch to Hatch},
year = {2026},
howpublished = {\url{https://pith.science/paper/MVJWM4GW}},
note = {Machine review of arXiv:2509.06068}
}
abstract
We introduce Home-made Diffusion Model (HDM), an efficient yet powerful text-to-image diffusion model optimized for training (and inferring) on consumer-grade hardware. HDM achieves competitive 1024x1024 generation quality while maintaining a remarkably low training cost of $535-620 using four RTX5090 GPUs, representing a significant reduction in computational requirements compared to traditional approaches. Our key contributions include: (1) Cross-U-Transformer (XUT), a novel U-shape transformer, Cross-U-Transformer (XUT), that employs cross-attention for skip connections, providing superior feature integration that leads to remarkable compositional consistency; (2) a comprehensive training recipe that incorporates TREAD acceleration, a novel shifted square crop strategy for efficient arbitrary aspect-ratio training, and progressive resolution scaling; and (3) an empirical demonstration that smaller models (343M parameters) with carefully crafted architectures can achieve high-quality results and emergent capabilities, such as intuitive camera control. Our work provides an alternative paradigm of scaling, demonstrating a viable path toward democratizing high-quality text-to-image generation for individual researchers and smaller organizations with limited computational resources.
Figures
Reference graph
Works this paper leans on
-
[1]
All are worth words: A vit backbone for diffusion models
Fan Bao, Shen Nie, Kaiwen Xue, Yue Cao, Chongxuan Li, Hang Su, and Jun Zhu. All are worth words: A vit backbone for diffusion models. InComputer Vision and Pattern Recognition 2023, pages 22669–22679, 06
work page 2023
-
[5]
URLhttps://arxiv.org/abs/2506.15742. 14 By KohakuBlueLeaf(Shih-Ying Yeh) from Kohaku-Lab Xingjian Leng, Jaskirat Singh, Yunzhong Hou, Zhenchang Xing, Saining Xie, and Liang Zheng. Repa-e: Unlocking vae for end-to-end tuning with latent diffusion transformers,
-
[6]
URLhttps://arxiv.org/ abs/2504.10483. Zhimin Li, Jianwei Zhang, Qin Lin, Jiangfeng Xiong, Yanxin Long, Xinchi Deng, Yingfang Zhang, Xingchao Liu, Minbin Huang, Zedong Xiao, Dayou Chen, Jiajun He, Jiahao Li, Wenyue Li, Chen Zhang, Rongwei Quan, Jianxiang Lu, Jiabin Huang, Xiaoyan Yuan, Xiaoxiao Zheng, Yixuan Li, Jihong Zhang, Chao Zhang, Meng Chen, Jie Liu...
-
[7]
URLhttps://arxiv. org/abs/2405.08748. Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matthew Le. Flow matching for generative modeling. InThe Eleventh International Conference on Learning Representations,
-
[8]
William Peebles and Saining Xie
URL https://openreview.net/forum?id=PqvMRDCJT9t. William Peebles and Saining Xie. Scalable diffusion models with transformers.arXiv preprint arXiv:2212.09748,
-
[9]
URLhttps://arxiv.org/abs/2503.21758. AlecRadford, JongWookKim, ChrisHallacy, AdityaRamesh, GabrielGoh, SandhiniAgarwal, GirishSastry, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning transferable visual models from natural language supervision,
-
[11]
URLhttps://arxiv.org/ abs/2502.14831. Jascha Sohl-Dickstein, Eric A. Weiss, Niru Maheswaranathan, and Surya Ganguli. Deep unsupervised learning using nonequilibrium thermodynamics. InProceedings of the 32nd International Conference on International Conference on Machine Learning - Volume 37, ICML’15, page 2256–2265. JMLR.org,
-
[12]
doi: 10.1016/j.neucom.2023.127063
ISSN 0925-2312. doi: 10.1016/j.neucom.2023.127063. URLhttps://doi.org/10.1016/j.neucom.2023.127063. Jie Wang, Tao Ji, Yuanbin Wu, Hang Yan, Tao Gui, Qi Zhang, Xuanjing Huang, and Xiaoling Wang. Length generalization of causal transformers without position encoding,
-
[13]
URLhttps://arxiv.org/abs/ 2404.12224. Zhendong Wang, Yifan Jiang, Huangjie Zheng, Peihao Wang, Pengcheng He, Zhangyang Wang, Weizhu Chen, and Mingyuan Zhou. Patch diffusion: Faster and more data-efficient training of diffusion models. In Thirty-seventh Conference on Neural Information Processing Systems,
-
[14]
URLhttps://arxiv.org/abs/2508.02324. Enze Xie, Junsong Chen, Junyu Chen, Han Cai, Haotian Tang, Yujun Lin, Zhekai Zhang, Muyang Li, Ligeng Zhu, Yao Lu, and Song Han. SANA: Efficient high-resolution text-to-image synthesis with linear diffusion transformers. InThe Thirteenth International Conference on Learning Representations,
-
[15]
Sihyun Yu, Sangkyung Kwak, Huiwon Jang, Jongheon Jeong, Jonathan Huang, Jinwoo Shin, and Saining Xie
URL https://arxiv.org/abs/2505.09388. Sihyun Yu, Sangkyung Kwak, Huiwon Jang, Jongheon Jeong, Jonathan Huang, Jinwoo Shin, and Saining Xie. Representation alignment for generation: Training diffusion transformers is easier than you think. In The Thirteenth International Conference on Learning Representations,
-
[16]
URLhttps://openreview. net/forum?id=DJSZGGZYVi. 16 By KohakuBlueLeaf(Shih-Ying Yeh) from Kohaku-Lab Appendix Table of Contents A Implementation Details 18 A.1 Position Map Generation . . . . . . . . . . . . . . . . . . . . . . . . . 18 A.2 Shifted Square Crop Strategy . . . . . . . . . . . . . . . . . . . . . . . 18 B Image Examples 19 C Limitations 29 D ...
work page 2025
-
[2021]
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer
URLhttps://arxiv.org/abs/2103.00020. Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Björn Ommer. High-resolution image synthesis with latent diffusion models,
-
[2023]
doi: 10.1109/CVPR52729.2023.02171. Chen Chen, Rui Qian, Wenze Hu, Tsu-Jui Fu, Jialing Tong, Xinze Wang, Lezhi Li, Bowen Zhang, Alex Schwing, Wei Liu, and Yinfei Yang. Dit-air: Revisiting the efficiency of diffusion model architecture design in text to image generation, 2025a. URLhttps://arxiv.org/abs/2503.10618. Chubin Chen, Jiashu Zhu, Xiaokun Feng, Nish...
-
[2024]
Jonathan Ho, Ajay Jain, and Pieter Abbeel
URLhttps://arxiv.org/abs/2403.03206. Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. InProceedings of the 34th International Conference on Neural Information Processing Systems, NIPS ’20, Red Hook, NY, USA,
-
[2025]
Felix Krause, Timy Phan, Ming Gui, Stefan Andreas Baumann, Vincent Tao Hu, and Björn Ommer
URLhttps://arxiv.org/abs/ 2502.09509. Felix Krause, Timy Phan, Ming Gui, Stefan Andreas Baumann, Vincent Tao Hu, and Björn Ommer. Tread: Token routing for efficient architecture-agnostic diffusion training - inference implementation, 2025a. URLhttps://github.com/CompVis/tread/blob/b1f5cc8707a83ffcd6a1dba2b0fd6985f325f4ff/ inference.py#L31. GitHub reposito...
This paper was first reviewed by deepseek-v4-flash on August 5, 2026.
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.