Papers › Amortized Moment Matching for Visual Generation

Amortized Moment Matching for Visual Generation

29 Jul 2026arXiv:2607.26860added by Syntology

Wenze Liu, Xintao Wang, Pengfei Wan, Xiangyu Yue

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

We propose amortized moment matching, utilizing neural networks to learn data moments as distributional training signals. By casting diffusion denoisers through polynomial projections, we establish a general framework for moment amortization, revealing that an n-th degree projection explicitly identifies data moments up to order n+1. Derived from the tractable affine case, we instantiate the Amortized Fréchet Distance (AMFD) loss. Unlike FD-loss which relies on explicit marginal moment calculations, AMFD is able to dynamically learn conditional moments via an alternating, matrix-free optimization pipeline that effortlessly scales to high-dimensional data. When operating on global representation features, AMFD serves as a powerful post-training objective; empirically, its neural formulation yields more robust training dynamics than exact statistical matching, substantially surpassing the FD baseline on the FDr⁶ metric and achieving superior one-step generation on ImageNet. Furthermore, it unlocks direct exploration within native generative spaces, suggesting that the first two moments can identify target distributions only in spaces with strong semantics. Finally, when scaled to text-to-image generation, the condition-aware nature of AMFD unlocks massive gains in instruction-following capabilities, enabling our one-step models to outperform their multi-step FLUX.2 [klein] 4B teachers on the GenEval benchmark while achieving on-par performance on PickScore. Code and checkpoints are available at https://github.com/poppuppy/amfd.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2607.26860")

Code

Syntology Ran 11 of 14 code samples harvested from 1 repository linked to this paper; 3 have no recorded run. Of those that ran: 7 ran · our draft was wrong; 4 ran with no contract checked.

By repository: found in paper text by Syntology: 14 samples from 1 repository, 11 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

poppuppy/amfd found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 11 ran; 0 honoured the contract we drafted; 3 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

7ran · our draft was wrong
4ran
3unverified

Licence: 0 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from poppuppy/amfd. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

FinalLayer poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran fingerprinted MIT (permissive) · 05012eadd72a8228 · report
MlpEncoder poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran MIT (permissive) · a5aa1c73efa8c043 · report
ResBlock poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran fingerprinted MIT (permissive) · f30fdfe486557b0d · report
TimestepEmbedder poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran MIT (permissive) · cea94e8ac480b940 · report
_feature_weight poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 3826925bc69ec8ae · report
_linear_jvp poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · f5cdbd173d3eb015 · report
_res_block_jvp poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 5e8d57329a932536 · report
_rms_norm_jvp poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 6d387286c1a36592 · report
_silu_jvp poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · cdb677f7d7465d2e · report
_time_vector poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 4eecaf737de4b827 · report
timestep_embedding poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · ecd79b7183df6033 · report
A_apply poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology unverified MIT (permissive) · e3e9e43ad63aec36 · report
AmortizedFDLoss poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology unverified MIT (permissive) · 288615e45e430105 · report
manual_mlp_jvp poppuppy/amfd/models/amfd_loss.py found in paper text by Syntology unverified MIT (permissive) · 361bb11a33d8b476 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2607.26860, was issued in July 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections