Pith. sign in

REVIEW 4 major objections 6 minor 28 references

Aquarius: A Family of Industry-Level Video Generation Models for Marketing Scenarios

T0 review · 4 major / 6 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read This paper argues that a five-part engineering recipe yields industrial-scale marketing-video generation at 2B and 13.4B scales, with 36% training efficiency and a 2.35x inference speedup.

desk verdict An honest engineering disclosure with useful training-infra details, whose headline efficiency numbers are too under-specified to check. read the letter →

arxiv 2505.10584 v1 pith:RCW5BV4F submitted 2025-05-14 cs.CV

classification cs.CV
keywords videogenerationdiffusiontransformerflowmatchingdistributedtraininginferenceaccelerationinpaintingpersonalizationmarketingscenarios
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper is a system disclosure of Aquarius, a family of diffusion-transformer (DiT) video generation models aimed at marketing and advertising production. Its central claim is that commercial-grade video generation is achievable with a specific, disclosed recipe: a distributed data pipeline, a 2B single-stream DiT for smaller budgets and a 13.4B multimodal-DiT for larger ones, flow-matching training through staged buckets that mix resolutions, aspect ratios, and frame counts, and a parallel training and inference stack. The report quantifies the engineering payoff as 36% model-FLOPs utilization (MFU) for the 13.4B model and a 2.35x inference speedup from training-free diffusion and attention caching. The work matters because it turns what are usually closed industrial choices—data filtering, annotation, parallelism, memory management, caching—into a reproducible blueprint for other teams. The evidence offered is mostly qualitative samples plus one video-inpainting benchmark, so the quality claims rest on those samples and on the reported engineering numbers.

What carries the argument

The load-bearing machinery is the integration of five named mechanisms. The 3D VAE with CausalConv3D and spatial-temporal tiling compresses video $4\times8\times8$ and supports extrapolation to arbitrary lengths while enabling tile-wise parallel encoding and decoding. The DiT pair—Single-DiT at 2B with cross-attention text conditioning, Multimodal-DiT at 13.4B with dual-stream self-attention and a multimodal large language model text encoder—is the generative backbone, and 3D RoPE (rotary position embedding applied separately to time, height, and width) lets a single model handle mixed aspect ratios and frame counts. Flow matching defines the training objective, with the model predicting the velocity $V_t = X_1 - X_0$ of the linear interpolation between noise and video. The training scaffold is bucket-based multi-stage curriculum plus hybrid parallelism—tensor and sequence parallelism inside a node, optional context parallelism for ultra-long sequences, and ZeRO-style data parallelism outside—with recomputation and offloading chosen by measured memory-latency ratios. Inference acceleration uses training-free caching of DiT-layer offsets and attention outputs, withholding cache for the first ten denoising steps, combined with parallel VAE decoding.

What would settle it

An independent evaluation would settle it: run the released Aquarius checkpoints on a fixed, diverse prompt set with automatic video-quality metrics and side-by-side human preference against the open models it positions itself alongside, and recompute the 36% MFU from a standard training stage's logs. If the quality gap is large or the MFU and caching numbers do not reproduce, the central claims fail.

Watch

Extended reading notes

Core claim

On its own terms, Aquarius claims that the hard part of industrial video generation is not a single algorithmic breakthrough but the integration of five components, each with a concrete design choice. The 3D variational autoencoder (3D VAE) compresses video by $4\times8\times8$ using causal 3D convolutions and spatial-temporal tiling, which allows arbitrary-length videos to be encoded and decoded in parallel. The architecture split is resolved by scale: a 2B Single-DiT (text conditioning through cross-attention, using a multilingual text encoder) for instruction-following use, and a 13.4B Multimodal-DiT (separate visual and text streams that concatenate and self-attend in later layers, with an in-house multimodal large language model text encoder and CLIP-based timestep guidance) for larger reasoning budgets. Training is flow matching on token-equivalent buckets, staged from 320px text-to-image through 61-frame 320px video to joint image-video pretraining at 960px and a 500k-sample supervised fine-tuning stage for human-centric marketing content. On inference, the paper reports DiT caching (reusing output-feature offsets of rear layers across sampling steps) and attention caching, with no caching in the first ten denoising steps, for a total 2.35x speedup. The report further claims the same backbone serves video inpainting through a from-scratch small DiT with temporal MultiDiffusion and video personalization by concatenating reference-image tokens along the sequence axis.

Load-bearing premise

The load-bearing premise is that the paper's qualitative video samples and a single video-inpainting benchmark suffice to establish the claimed commercial-grade quality of the 2B and 13.4B models, since the report offers no human evaluation, preference study, or systematic metric for its main text-to-video and image-to-video claims.

Editorial extensions

If this is right

  • A 2B single-stream DiT with a strong multilingual text encoder can carry instruction-following marketing-video tasks, so teams without 13B-scale budgets have a viable smaller entry point.
  • If reproduced, the 36% MFU figure and the communication-computation overlap, explicit patchify gradient synchronization, and recomputation/offloading balance give other industrial trainers concrete efficiency targets.
  • The paper's caching recipe—reuse rear-DiT layer offsets and attention outputs, skip caching for the first ten denoising steps—is claimed to deliver a 2.35x inference speedup with stable generation quality.
  • The bucket strategy makes multi-resolution, multi-aspect-ratio, and multi-duration training a matter of editing a configuration file, because configurations like $\{1,29,640,640\}$ and $\{1,125,320,320\}$ are token-equivalent.
  • For video completion, the paper claims a from-scratch flow-matching DiT with temporal MultiDiffusion surpasses ProPainter on PSNR, SSIM, and VFID in as few as four inference steps.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • This is an inference: the paper compares 2B single-stream against 13.4B multimodal, so the architecture choice is not isolated; a same-parameter-count ablation would be the natural way to see which scaling decision actually drives quality.
  • This is an inference: the proprietary data layer—aesthetic scorers, human-quality scoring, structured captioning with 7B and 34B captioners, and human-reviewed SFT sets—is likely the hardest part to reproduce, even with the architecture and training code disclosed.
  • This is an inference: applying the same caching and tile-parallel VAE ideas to open DiT video codebases would test whether the 2.35x speedup is framework-general or specific to Aquarius's architecture and training.
  • This is an inference: if Aquarius-Datapipe is truly open-sourced, a community benchmark could determine how much of downstream video quality comes from the filtering and annotation cascade itself rather than from model size.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 6 minor

Summary. The paper describes Aquarius, a family of video generation models (2B Single-DiT and 13.4B Multimodal-DiT) aimed at marketing applications. It presents a distributed data curation pipeline, architectural choices, multi-stage flow-matching training, hybrid-parallel infrastructure with a reported 36% MFU, training-free inference acceleration claimed at 2.35x, and downstream applications including digital humans, video inpainting, and video personalization. The only quantitative comparison against an external method is an inpainting evaluation against ProPainter on a 50-video test set (Table 3); the main text-to-video and image-to-video claims rest on qualitative examples and internally developed scoring models.

Significance. If the engineering and performance claims were substantiated, Aquarius would be a useful industrial case study, particularly the explicit tensor-parallel gradient synchronization, fine-grained recomputation selection, and decoupled encoder/DiT training. The data-pipeline and inpainting design descriptions contain reusable recipes. However, as submitted, the key performance claims are not backed by systematic, independently checkable evidence; the paper reads more as an engineering blog post than a verifiable research report.

major comments (4)
  1. [Section 5] The claim that the 13.4B model achieves 36% MFU is not verifiable as stated because the FLOPs definition is missing. The paper does not specify which operations are counted in the numerator (e.g., whether the decoupled VAE and text encoders are included, whether the adaLN conditioning MLPs that add over 3B parameters are counted, or which attention variant is used), nor does it state the hardware peak-FLOPs assumption in the denominator. Without this information the number cannot be reproduced or compared with other systems.
  2. [Section 6] The 2.35x inference speedup is reported without a measurement protocol: no hardware, batch size, resolution, number of sampling steps, caching step interval, or latency breakdown is given. The claim that quality is preserved is supported only by an unspecified validation-set check. As written, the acceleration result is not reproducible.
  3. [Table 3 / Section 7.2] The inpainting comparison against ProPainter is based on 50 short 720p videos resized to 432x240, with a single baseline, no error bars, no statistical significance test, and VFID is not defined. This evidence is too thin to support the sentence that the method 'surpasses ProPainter, the state-of-the-art video inpainting algorithm,' especially because the differences in PSNR/SSIM are small.
  4. [Sections 1 and 7.1] The central claims of 'exceptional performance', strong instruction following, and realistic commercial-grade digital humans are supported only by qualitative figures and by internally trained scoring models used in the data-filtering pipeline (Section 2.2.2). There is no independent human evaluation protocol, preference study, external benchmark, or comparison with commercial video-generation models for the main text-to-video and image-to-video capabilities. Internal filters cannot validate the headline performance claims.
minor comments (6)
  1. [Section 5 heading] The section heading 'Training Efficieny' contains a typo and should read 'Training Efficiency'.
  2. [Equation (2)] The loss is described as mean squared error, but the displayed expression lacks a square on the norm; it should read \|u(X_t,y,t;\theta)-V_t\|^2.
  3. [Table 1] The step counts are given as order-of-magnitude values such as 'O(100K)'; exact or more precise step counts would improve reproducibility.
  4. [Abstract and Section 8] The open-source framework is called 'Aquarius-Datapipe' in the Abstract and Section 2 but 'Aquarius-Raydata' in Section 8; the naming should be made consistent.
  5. [Section 3.2.3] It is unclear whether the 10B MoE model is part of the Aquarius family or a separate exploratory experiment; its status and relation to the 2B and 13.4B models should be clarified.
  6. [Abstract and Section 8] The paper repeatedly states that the framework is designed for models with hundreds of billions of parameters, but all reported results are at 2B and 13.4B scale; this claim should be tempered or supported with concrete design/experiment evidence.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the paper is an engineering report whose main claims are either architectural descriptions, infrastructure measurements (MFU, speedup), or applications evaluated on one external benchmark; internal-model quality filtering is self-referential but is not a derivation of a predicted result from its own input.

full rationale

I walked the claimed derivation chain and found no step in which a predicted quantity is equivalent, by construction, to a fitted input or to a self-citation. The paper's main text-to-video and image-to-video quality claims rest on qualitative figures and on data curated by in-house models (internal human quality model, internal VideoCLIP, internal captioners), but that is a lack of external validation, not circularity: the report does not define a quantity such as 'quality' in terms of those filters and then claim to predict it. The one quantitative comparison, video completion against ProPainter (Table 3), uses an external baseline and a 50-video test set; it is self-contained even if narrow. The MFU 36% and 2.35x inference speedup numbers are under-specified (no FLOPs formula, no hardware/latency breakdown), which makes them hard to verify but does not make them circular. The only self-citation I found, Xie et al. (2024) on unified understanding-and-generation models, appears in the Future Works section as an external direction and is not load-bearing for any present claim. No ansatz is smuggled in via citation, and no known result is renamed as a new derivation. Per the hard rules, an unsupported performance claim is a correctness or evidence concern, not a circularity concern; I therefore return a score of 0 with no circular steps.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The report introduces no new scientific entities. The load-bearing elements that are pulled from the authors' internal toolchain (internal quality models, internal captioners, internal scene detection) act as unvalidated assumptions, and several efficiency knobs are free parameters fit on internal validation data. The paper is a disclosure of an applied system whose evaluation is largely internal.

free parameters (4)
  • Thresholds of filtering models = not disclosed
    Aesthetic, human-quality, and motion filters require thresholds that the paper says must be readjusted for different resolution stages; the values are neither reported nor externally calibrated.
  • Diffusion cache schedule and layer selection = not disclosed
    The caching steps, layer subset, and intervals are selected by enumerating on a validation set; this is a hyperparameter choice fit to internal validation data.
  • Image-to-video ratio in joint pretraining = 30% decreasing to 10%
    The ratio is chosen empirically and explicitly described as a balance knob affecting motion quality, not derived from any principle.
  • Similarity threshold 0.7 for cross-video pairs = 0.7
    Face-embedding similarity threshold is chosen by hand to build identity-consistent training pairs.
assumptions (4)
  • domain assumption The internal quality models (aesthetic, human quality, VideoCLIP) used for filtering and validation are reliable indicators of generation quality.
    The paper never validates these internal models against human preference or external benchmarks; this assumption underpins both data curation and the qualitative performance claims in Section 2.
  • standard math Flow matching with logit-normal timestep sampling and the stated multi-stage curriculum is a sound training framework for video generation.
    The paper adopts Flow Matching (Lipman et al.) without derivation; this is a standard assumption in the field.
  • domain assumption The VAE tiling strategy preserves reconstruction quality well enough that tiled training and inference do not degrade downstream video quality.
    The paper claims tiled training supports extrapolation to arbitrary lengths and parallelization, but provides no quantitative VAE reconstruction comparisons for the tiling strategy.
  • domain assumption Ray-based distributed data processing scales to tens of thousands of CPUs and thousands of xPUs as stated.
    The paper states Ray is the basis of Aquarius-Datapipe but provides no measurements of pipeline throughput or scalability.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Aquarius: A Family of Industry-Level Video Generation Models for Marketing Scenarios." pith.science (2026). https://pith.science/paper/RCW5BV4F

@misc{pith2026250510584,
  author       = {Pith},
  title        = {Pith review of: Aquarius: A Family of Industry-Level Video Generation Models for Marketing Scenarios},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/RCW5BV4F}},
  note         = {Machine review of arXiv:2505.10584}
}
read the original abstract

This report introduces Aquarius, a family of industry-level video generation models for marketing scenarios designed for thousands-xPU clusters and models with hundreds of billions of parameters. Leveraging efficient engineering architecture and algorithmic innovation, Aquarius demonstrates exceptional performance in high-fidelity, multi-aspect-ratio, and long-duration video synthesis. By disclosing the framework's design details, we aim to demystify industrial-scale video generation systems and catalyze advancements in the generative video community. The Aquarius framework consists of five components: Distributed Graph and Video Data Processing Pipeline: Manages tens of thousands of CPUs and thousands of xPUs via automated task distribution, enabling efficient video data processing. Additionally, we are about to open-source the entire data processing framework named "Aquarius-Datapipe". Model Architectures for Different Scales: Include a Single-DiT architecture for 2B models and a Multimodal-DiT architecture for 13.4B models, supporting multi-aspect ratios, multi-resolution, and multi-duration video generation. High-Performance infrastructure designed for video generation model training: Incorporating hybrid parallelism and fine-grained memory optimization strategies, this infrastructure achieves 36% MFU at large scale. Multi-xPU Parallel Inference Acceleration: Utilizes diffusion cache and attention optimization to achieve a 2.35x inference speedup. Multiple marketing-scenarios applications: Including image-to-video, text-to-video (avatar), video inpainting and video personalization, among others. More downstream applications and multi-dimensional evaluation metrics will be added in the upcoming version updates.

Figures

Figures reproduced from arXiv: 2505.10584 by the authors.

Figure 1
Figure 1. Data Filter Pipeline relatively low accuracy for videos of medium quality, we only use the scores filtered out videos with abnormally low scores. Then, we used internally trained multi-dimensional video quality model to evaluate the visual aesthetics of video clips from both aesthetic and technical viewpoints. Finally, we used our internal human quality model to score and filter based on human integrity, facial inte… view at source ↗
Figure 2
Figure 2. Overview of our 3DVAE. scores and camera control, especially in the early stages of model training. This adherence gradually diminishes in the later stages of training. 3 Model Architecture 3.1 3D Variational Autoencoder Variational Autoencoders (VAEs) accelerate the training speed of diffusion models and reduce training resources by compressing high-dimensional visual data into a compact latent space. However, vide… view at source ↗
Figure 3
Figure 3. Overview of the our VideoDiT architecture. [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (11 more)
Figure 4
Figure 4. Figure 4: Explicit gradient synchronization across tensor-parallel group: preventing parameter drift [PITH_FULL_IMAGE:figures/full_fig_p011_4.png]
Figure 5
Figure 5. Figure 5: Shared Storage Retention: QKV memory deallocation delayed until MLP-in Release. [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]
Figure 6
Figure 6. Figure 6: Multi-xPU Parallel Inference Scaling Linearity [PITH_FULL_IMAGE:figures/full_fig_p014_6.png]
Figure 7
Figure 7. Figure 7: The 2B single-DiT model generates a 5-second video at 1080P resolution with 24 frames [PITH_FULL_IMAGE:figures/full_fig_p016_7.png]
Figure 8
Figure 8. Figure 8: The 13.4B Multimodal-DiT model generates a 5-second video at 720P resolution with 24 [PITH_FULL_IMAGE:figures/full_fig_p017_8.png]
Figure 9
Figure 9. Figure 9: The 13.4B Multimodal-DiT model extended generates a 10-second video at 720P resolution [PITH_FULL_IMAGE:figures/full_fig_p018_9.png]
Figure 10
Figure 10. Figure 10: Pipeline of video inpainting. We patchify video latents, masks along with random noises [PITH_FULL_IMAGE:figures/full_fig_p019_10.png]
Figure 11
Figure 11. Figure 11: Results of video completion by ProPainter and our method. [PITH_FULL_IMAGE:figures/full_fig_p020_11.png]
Figure 12
Figure 12. Figure 12: Qualitative comparison of video decaptioning between ProPainter and our method. [PITH_FULL_IMAGE:figures/full_fig_p021_12.png]
Figure 13
Figure 13. Figure 13: Overview of video personalization model. The reference face image is processed by the [PITH_FULL_IMAGE:figures/full_fig_p022_13.png]
Figure 14
Figure 14. Figure 14: Visualization results of video personalization model. [PITH_FULL_IMAGE:figures/full_fig_p023_14.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

28 extracted references · 27 linked inside Pith

  1. [2]

    URLhttps://arxiv.org/abs/2310.00426. Pengtao Chen, Mingzhu Shen, Peng Ye, Jianjian Cao, Chongjun Tu, Christos-Savvas Bouganis, Yiren Zhao, and Tao Chen.δ-dit: A training-free acceleration method tailored for diffusion transformers,

  2. [4]

    Fast and memory-efficient exact attention with io-awareness, 2022.URL https://arxiv

    T Dao, DY Fu, S Ermon, A Rudra, and C Flashattention Ré. Fast and memory-efficient exact attention with io-awareness, 2022.URL https://arxiv. org/abs/2205.14135. Patrick Esser, Sumith Kulal, Andreas Blattmann, Rahim Entezari, Jonas Müller, Harry Saini, Yam Levi, Dominik Lorenz, Axel Sauer, Frederic Boesel, Dustin Podell, Tim Dockhorn, Zion English, Kyle L...

  3. [5]

    URLhttps://arxiv.org/abs/2403.03206. FFmpeg. Ffmpeg. URLhttps://ffmpeg.org/. Ian J. Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial networks,

  4. [10]

    Vijay Anand Korthikanti, Jared Casper, Sangkug Lym, Lawrence McAfee, Michael Andersch, Mohammad Shoeybi, and Bryan Catanzaro

    URL https://arxiv.org/abs/2412.03603. Vijay Anand Korthikanti, Jared Casper, Sangkug Lym, Lawrence McAfee, Michael Andersch, Mohammad Shoeybi, and Bryan Catanzaro. Reducing activation recomputation in large transformer models.Proceedings of Machine Learning and Systems, 5:341–353,

  5. [11]

    Yaron Lipman, Ricky T

    URLhttps://arxiv.org/abs/2412.00131. Yaron Lipman, Ricky T. Q. Chen, Heli Ben-Hamu, Maximilian Nickel, and Matt Le. Flow matching for generative modeling,

  6. [12]

    URLhttps://arxiv.org/abs/2210.02747. Luma. Dream machine

  7. [14]

    URL https: //arxiv.org/abs/2212.09748. Xiangyu Peng, Zangwei Zheng, Chenhui Shen, Tom Young, Xinying Guo, Binluo Wang, Hang Xu, Hongxin Liu, Mingyan Jiang, Wenjun Li, Yuhui Wang, Anbang Ye, Gang Ren, Qianran Ma, Wanying Liang, Xiang Lian, Xiwen Wu, Yuting Zhong, Zhuangyan Li, Chaoyu Gong, Guojun Lei, Leijun Cheng, Limin Zhang, Minghao Li, Ruijie Zhang, Si...

  8. [16]

    25 PySceneDetect

    URLhttps://arxiv.org/abs/2307.01952. 25 PySceneDetect. Pyscenedetect

Show all 28 references
  1. [18]

    Minsoo Rhu, Natalia Gimelshein, Jason Clemons, Arslan Zulfiqar, and Stephen W Keckler

    URL https://arxiv.org/abs/2404.13686. Minsoo Rhu, Natalia Gimelshein, Jason Clemons, Arslan Zulfiqar, and Stephen W Keckler. vdnn: Virtualized deep neural networks for scalable, memory-efficient neural network design. In2016 49th Annual IEEE/ACM International Symposium on Micr...

  2. [19]

    URL https://arxiv.org/abs/ 2112.10752. Runway. Runway-gen-3-alpha

  3. [20]

    Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catan- zaro

    URL https://runwayml.com/research/ introducing-gen-3-alpha. Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catan- zaro. Megatron-lm: Training multi-billion parameter language models using model parallelism. arXiv preprint arXiv:1909.08053,

  4. [22]

    URL https://arxiv.org/abs/ 2104.09864. WanTeam, Ang Wang, Baole Ai, Bin Wen, Chaojie Mao, Chen-Wei Xie, Di Chen, Feiwu Yu, Haiming Zhao, Jianxiao Yang, Jianyuan Zeng, Jiayu Wang, Jingfeng Zhang, Jingren Zhou, Jinkai Wang, Jixuan Chen, Kai Zhu, Kang Zhao, Keyu Yan, Lianghua Hua...

  5. [23]

    Rongchang Xie, Chen Du, Ping Song, and Chang Liu

    URLhttps://arxiv.org/abs/2503.20314. Rongchang Xie, Chen Du, Ping Song, and Chang Liu. Muse-vl: Modeling unified vlm through semantic discrete encoding.arXiv preprint arXiv:2411.17762,

  6. [24]

    Linting Xue, Noah Constant, Adam Roberts, Mihir Kale, Rami Al-Rfou, Aditya Siddhant, Aditya Barua, and Colin Raffel

    URLhttps://arxiv.org/abs/2405.18991. Linting Xue, Noah Constant, Adam Roberts, Mihir Kale, Rami Al-Rfou, Aditya Siddhant, Aditya Barua, and Colin Raffel. mt5: A massively multilingual pre-trained text-to-text transformer,

  7. [25]

    URLhttps://arxiv.org/abs/2010.11934. Zhuoyi Yang, Jiayan Teng, Wendi Zheng, Ming Ding, Shiyu Huang, Jiazheng Xu, Yuanming Yang, Wenyi Hong, Xiaohan Zhang, Guanyu Feng, Da Yin, Yuxuan Zhang, Weihan Wang, Yean Cheng, Bin Xu, Xiaotao Gu, Yuxiao Dong, and Jie Tang. Cogvideox: Text...

  8. [26]

    26 Lijun Yu, José Lezama, Nitesh B

    URLhttps://arxiv.org/abs/2408.06072. 26 Lijun Yu, José Lezama, Nitesh B. Gundavarapu, Luca Versari, Kihyuk Sohn, David Minnen, Yong Cheng, Vighnesh Birodkar, Agrim Gupta, Xiuye Gu, Alexander G. Hauptmann, Boqing Gong, Ming-Hsuan Yang, Irfan Essa, David A. Ross, and Lu Jiang. L...

  9. [27]

    Xuanlei Zhao, Xiaolong Jin, Kai Wang, and Yang You

    URLhttps://arxiv.org/abs/2310.05737. Xuanlei Zhao, Xiaolong Jin, Kai Wang, and Yang You. Real-time video generation with pyramid attention broadcast,

  10. [28]

    Shangchen Zhou, Chongyi Li, Kelvin C.K Chan, and Chen Change Loy

    URLhttps://arxiv.org/abs/2408.12588. Shangchen Zhou, Chongyi Li, Kelvin C.K Chan, and Chen Change Loy. ProPainter: Improving propagation and transformer for video inpainting. InProceedings of IEEE International Conference on Computer Vision (ICCV),

  11. [1991]

    Sam Ade Jacobs, Masahiro Tanaka, Chengming Zhang, Minjia Zhang, Shuaiwen Leon Song, Samyam Rajbhandari, and Yuxiong He

    doi: 10.1162/neco.1991.3.1.79. Sam Ade Jacobs, Masahiro Tanaka, Chengming Zhang, Minjia Zhang, Shuaiwen Leon Song, Samyam Rajbhandari, and Yuxiong He. Deepspeed ulysses: System optimizations for enabling training of extreme long sequence transformer models.arXiv preprint arXiv...

  12. [2014]

    Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al

    URL https: //arxiv.org/abs/1406.2661. Aaron Grattafiori, Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Alex Vaughan, et al. The llama 3 herd of models.arXiv preprint arXiv:2407.21783,

  13. [2018]

    URLhttps://arxiv.org/abs/1712.05889. Deepak Narayanan, Mohammad Shoeybi, Jared Casper, Patrick LeGresley, Mostofa Patwary, Vijay Korthikanti, Dmitri Vainbrand, Prethvi Kashinkunti, Julie Bernauer, Bryan Catanzaro, et al. Efficient large-scale language model training on gpu clu...

  14. [2019]

    Transnet v2: An effective deep network architecture for fast shot transition detection.arXiv preprint arXiv:2008.04838,

    Tomáš Souˇcek and Jakub Lokoˇc. Transnet v2: An effective deep network architecture for fast shot transition detection.arXiv preprint arXiv:2008.04838,

  15. [2020]

    Robert A

    URL https://arxiv.org/abs/2006.11239. Robert A. Jacobs, Michael I. Jordan, Steven J. Nowlan, and Geoffrey E. Hinton. Adaptive mixtures of local experts.Neural Computation, 3(1):79–87,

  16. [2021]

    Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He

    URL https: //arxiv.org/abs/2103.00020. Samyam Rajbhandari, Jeff Rasley, Olatunji Ruwase, and Yuxiong He. Zero: Memory optimizations toward training trillion parameter models. InSC20: International Conference for High Performance Computing, Networking, Storage and Analysis, pag...

  17. [2022]

    org/abs/2207.12598

    URL https://arxiv. org/abs/2207.12598. 24 Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models,

  18. [2023]

    BlackForestLabs

    URLhttps://arxiv.org/abs/2302.08113. BlackForestLabs. Flux.https://github.com/black-forest-labs/flux,

  19. [2024]

    Damai Dai, Chengqi Deng, Chenggang Zhao, RX Xu, Huazuo Gao, Deli Chen, Jiashi Li, Wangding Zeng, Xingkai Yu, Yu Wu, et al

    URLhttps://arxiv.org/abs/2406.01125. Damai Dai, Chengqi Deng, Chenggang Zhao, RX Xu, Huazuo Gao, Deli Chen, Jiashi Li, Wangding Zeng, Xingkai Yu, Yu Wu, et al. Deepseekmoe: Towards ultimate expert specialization in mixture- of-experts language models.arXiv preprint arXiv:2401.06066,

  20. [2025]

    Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas Müller, Joe Penna, and Robin Rombach

    URLhttps://arxiv.org/abs/2503.09642. Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas Müller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis,

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.