search
HomeTechnology peripheralsAIApple's large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

I am used to Stable Diffusion, and now I finally have a Matryoshka-style Diffusion model, made by Apple.

#In the era of generative AI, diffusion models have become a popular tool for generative AI applications such as image, video, 3D, audio, and text generation. However, extending diffusion models to high-resolution domains still faces significant challenges because the model must recode all high-resolution inputs at each step. Solving these challenges requires the use of deep architectures with attention blocks, which makes optimization more difficult and consumes more computing power and memory.

How to do it? Some recent work has focused on investigating efficient network architectures for high-resolution images. However, none of the existing methods have demonstrated results beyond 512×512 resolution, and the generation quality lags behind mainstream cascade or latent methods.

We take OpenAI DALL-E 2, Google IMAGEN and NVIDIA eDiffI as examples. They save computation by learning a low-resolution model and multiple super-resolution diffusion models. force, where each component is trained individually. On the other hand, the latent diffusion model (LDM) only learns a low-resolution diffusion model and relies on a separately trained high-resolution autoencoder. For both solutions, multi-stage pipelines complicate training and inference, often requiring careful tuning or hyperparameters.

In this article, researchers propose the Matryoshka Diffusion Models (MDM), which is a new diffusion model for end-to-end high-resolution image generation. Model. The code will be released soon.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Paper address: https://arxiv.org/pdf/2310.15111.pdf

The research proposed The main idea is to use the low-resolution diffusion process as part of the high-resolution generation by performing a joint diffusion process at multiple resolutions using a nested UNet architecture.

The study found that: MDM and nested UNet architecture together achieve 1) multi-resolution loss: greatly improving the convergence speed of high-resolution input denoising; 2) Efficient progressive training plan, starting from training a low-resolution diffusion model and gradually adding high-resolution inputs and outputs according to the plan. Experimental results show that combining multi-resolution loss with progressive training can achieve a better balance between training cost and model quality.

This study evaluates MDM on class-conditional image generation as well as text-conditional image and video generation. MDM allows training high-resolution models without the use of cascades or latent diffusion. Ablation studies show that both multi-resolution loss and progressive training greatly improve training efficiency and quality.

Let’s enjoy the following pictures and videos generated by MDM.
Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Method Overview

Researcher Introduction The MDM diffusion model is trained end-to-end in high resolution while leveraging hierarchically structured data formation. MDM first generalizes the standard diffusion model in diffusion space and then proposes a dedicated nested architecture and training process.

First let’s look at how to generalize the standard diffusion model in the extended space.

The difference from cascade or latent methods is that MDM learns a single diffusion process with a hierarchical structure by introducing multi-resolution diffusion processes in an expansion space . The details are shown in Figure 2 below.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Specifically, given a data point x ∈ R^N, the researcher defines a time-related latent variable z_t = z_t^1, . . . , z_t^R ∈ R^N_1...NR.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Researchers say that conducting diffusion modeling in extended space has the following two advantages. For one, we typically care about the full-resolution output z_t^R during inference, then all other intermediate resolutions are treated as additional latent variables z_t^r, increasing the complexity of modeling the distribution. Second, multi-resolution dependencies provide the opportunity to share weights and computations across z_t^r, thereby redistributing computation in a more efficient manner and enabling efficient training and inference.

Let’s see how nested architecture (NestedUNet) works.

Similar to typical diffusion models, researchers use a UNet network structure to implement MDM, where residual connections and computational blocks are used in parallel to preserve fine-grained input information. The computational block here contains multiple layers of convolution and self-attention layers. The codes for NestedUNet and standard UNet are as follows.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

In addition to its simplicity compared to other hierarchical methods, NestedUNet allows calculations to be distributed in the most efficient way. As shown in Figure 3 below, early exploration by researchers found that MDM achieves significantly better scalability when allocating most parameters and calculations at the lowest resolution.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Finally learn.

Researchers use conventional denoising targets to train MDM at multiple resolutions, as shown in equation (3) below.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Progressive training is used here. The researchers directly trained MDM end-to-end according to the above formula (3) and demonstrated better convergence than the original baseline method. They found that using a simple progressive training method similar to that proposed in the GAN paper greatly accelerated the training of high-resolution models.

This training method avoids costly high-resolution training from the beginning and accelerates overall convergence. Not only that, they also incorporated mixed-resolution training, which trains samples with different final resolutions simultaneously in a single batch.

Experiments and results

##MDM is a general technology that can be gradually Any problems compressing input dimensions. A comparison of MDM with the baseline approach is shown in Figure 4 below.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Table 1 gives the comparison results on ImageNet (FID-50K) and COCO (FID-30K).

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Figures 5, 6 and 7 below show the performance of MDM in image generation (Figure 5), text to image (Figure 6) and text to video (Figure 7) result. Despite being trained on a relatively small dataset, MDM shows strong zero-shot ability to generate high-resolution images and videos.

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Apples large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution

Interested readers can read the original text of the paper to learn more about the research content.

The above is the detailed content of Apple's large Vincent picture model unveiled: Russian matryoshka-like spread, supporting 1024x1024 resolution. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:机器之心. If there is any infringement, please contact admin@php.cn delete
The AI Skills Gap Is Slowing Down Supply ChainsThe AI Skills Gap Is Slowing Down Supply ChainsApr 26, 2025 am 11:13 AM

The term "AI-ready workforce" is frequently used, but what does it truly mean in the supply chain industry? According to Abe Eshkenazi, CEO of the Association for Supply Chain Management (ASCM), it signifies professionals capable of critic

How One Company Is Quietly Working To Transform AI ForeverHow One Company Is Quietly Working To Transform AI ForeverApr 26, 2025 am 11:12 AM

The decentralized AI revolution is quietly gaining momentum. This Friday in Austin, Texas, the Bittensor Endgame Summit marks a pivotal moment, transitioning decentralized AI (DeAI) from theory to practical application. Unlike the glitzy commercial

Nvidia Releases NeMo Microservices To Streamline AI Agent DevelopmentNvidia Releases NeMo Microservices To Streamline AI Agent DevelopmentApr 26, 2025 am 11:11 AM

Enterprise AI faces data integration challenges The application of enterprise AI faces a major challenge: building systems that can maintain accuracy and practicality by continuously learning business data. NeMo microservices solve this problem by creating what Nvidia describes as "data flywheel", allowing AI systems to remain relevant through continuous exposure to enterprise information and user interaction. This newly launched toolkit contains five key microservices: NeMo Customizer handles fine-tuning of large language models with higher training throughput. NeMo Evaluator provides simplified evaluation of AI models for custom benchmarks. NeMo Guardrails implements security controls to maintain compliance and appropriateness

AI Paints A New Picture For The Future Of Art And DesignAI Paints A New Picture For The Future Of Art And DesignApr 26, 2025 am 11:10 AM

AI: The Future of Art and Design Artificial intelligence (AI) is changing the field of art and design in unprecedented ways, and its impact is no longer limited to amateurs, but more profoundly affecting professionals. Artwork and design schemes generated by AI are rapidly replacing traditional material images and designers in many transactional design activities such as advertising, social media image generation and web design. However, professional artists and designers also find the practical value of AI. They use AI as an auxiliary tool to explore new aesthetic possibilities, blend different styles, and create novel visual effects. AI helps artists and designers automate repetitive tasks, propose different design elements and provide creative input. AI supports style transfer, which is to apply a style of image

How Zoom Is Revolutionizing Work With Agentic AI: From Meetings To MilestonesHow Zoom Is Revolutionizing Work With Agentic AI: From Meetings To MilestonesApr 26, 2025 am 11:09 AM

Zoom, initially known for its video conferencing platform, is leading a workplace revolution with its innovative use of agentic AI. A recent conversation with Zoom's CTO, XD Huang, revealed the company's ambitious vision. Defining Agentic AI Huang d

The Existential Threat To UniversitiesThe Existential Threat To UniversitiesApr 26, 2025 am 11:08 AM

Will AI revolutionize education? This question is prompting serious reflection among educators and stakeholders. The integration of AI into education presents both opportunities and challenges. As Matthew Lynch of The Tech Edvocate notes, universit

The Prototype: American Scientists Are Looking For Jobs AbroadThe Prototype: American Scientists Are Looking For Jobs AbroadApr 26, 2025 am 11:07 AM

The development of scientific research and technology in the United States may face challenges, perhaps due to budget cuts. According to Nature, the number of American scientists applying for overseas jobs increased by 32% from January to March 2025 compared with the same period in 2024. A previous poll showed that 75% of the researchers surveyed were considering searching for jobs in Europe and Canada. Hundreds of NIH and NSF grants have been terminated in the past few months, with NIH’s new grants down by about $2.3 billion this year, a drop of nearly one-third. The leaked budget proposal shows that the Trump administration is considering sharply cutting budgets for scientific institutions, with a possible reduction of up to 50%. The turmoil in the field of basic research has also affected one of the major advantages of the United States: attracting overseas talents. 35

All About Open AI's Latest GPT 4.1 Family - Analytics VidhyaAll About Open AI's Latest GPT 4.1 Family - Analytics VidhyaApr 26, 2025 am 10:19 AM

OpenAI unveils the powerful GPT-4.1 series: a family of three advanced language models designed for real-world applications. This significant leap forward offers faster response times, enhanced comprehension, and drastically reduced costs compared t

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!