


Meta's innovative SOTA model can generate amazing videos based on one sentence, setting off an Internet craze!
I’ll give you a paragraph and ask you to make a video, can you do it?
Meta said, I can do it.
You heard it right: using AI, you can also become a filmmaker!
Recently, Meta has launched a new AI model with a very straightforward name: Make-A-Video.
How powerful is this model?
With just one sentence, the scene of "Three Horses Galloping" can be realized.
Even LeCun said that what is supposed to come will always come.
The visual effects are stunning
Without further ado, let’s just look at the effects.
Two kangaroos are busy cooking in the kitchen (whether it can be eaten is another matter)
Close shot: The painter is painting on the canvas
The world of two people walking in the heavy rain (with uniform steps)
The horse is drinking water
Ballet girl dancing on the skyscraper
A golden retriever is eating ice cream (paws have evolved) on a beautiful tropical beach in summer
The cat owner is watching TV with the remote control (paws have evolved)
A teddy bear gives Draw your own self-portrait
Unexpected but reasonable, the dog takes the ice cream, the cat takes the remote control and the teddy bear draws " "Hands" have indeed "evolved" like humans! (Tactical Backward)
Of course, in addition to turning text into video, Make-A-Video can also turn static images into Gifs.
input Output:
Input:
Output: (The light seems a bit out of place)
Convert 2 still images to GIF, input the meteorite image
##Output:
And, turn the video into a video?
input Output:
input Output:
Today, Meta released its latest research MAKE-A-VIDEO: TEXT-TO-VIDEO GENERATION WITHOUT TEXT-VIDEO DATA.
Paper address: https://makeavideo.studio/Make-A-Video.pdf
Obviously, it is to generate a video.
A superhero dog wearing a red cape flies in the sky
Compared to generating images, generating videos is much more difficult. Not only do we need to generate multiple frames of the same subject and scene, we also have to make them timely and coherent.
This increases the complexity of the image generation task - we cannot simply use DALLE to generate 60 images and then stitch them into a video. The effect will be very poor and unrealistic.
Therefore, we need a model that can understand the world in a more powerful way and allow it to generate a coherent series of images based on this level of understanding. Only then can the images blend together seamlessly. In other words, our goal is to simulate a world and then simulate its records. How to do it?
According to previous ideas, researchers would use a large number of text-video pairs to train the model, but in the current situation, this processing method is not realistic. Because these data are difficult to obtain, and the training cost is very expensive.
Therefore, the researchers opened their minds and adopted a completely new approach.
They chose to develop a text-to-image model and then apply it to video.
Coincidentally, some time ago, Meta developed Make-A-Scene, a model from text to image.
Make-A-Scene method overview
This model generates The opportunity is that Meta wants to promote creative expression, combining this text-to-image trend with the previous sketch-to-image model, resulting in a wonderful fusion between text and sketch-conditioned image generation.
This means we can quickly sketch a cat and write out what kind of image we want. Following the guidance of sketches and text, this model will produce the perfect illustration we want in seconds.
You can think of this multi-modal generative AI approach as a Dall-E model with more control over generation because it Quick sketches can also be used as input.
The reason why it is called multi-modal is because it can take multiple modalities as input, such as text and images. In contrast, Dall-E can only generate images from text.
In order to generate a video, the dimension of time needs to be added, so the researchers added a spatio-temporal pipeline to the Make-A-Scene model.
After adding the time dimension, this model does not generate just one picture, but generates 16 low-resolution pictures to create a A coherent short video.
This method is actually similar to the text-to-image model, but the difference is that it adds one-dimensional convolution on the basis of conventional two-dimensional convolution.
By simply adding a one-dimensional convolution, the researchers were able to keep the pre-trained two-dimensional convolution unchanged while adding a time dimension. Researchers can then train from scratch, reusing much of the code and parameters of the Make-A-Scene image model.
At the same time, the researchers also want to use text input to guide this model, which will be very similar to image models using CLIP embeddings.
In this case, the researchers increased the spatial dimension when mixing text features with image features, using the same method as above: retaining the attention module in the Make-A-Scene model , and add a one-dimensional attention module for time - copy-paste image generator model, repeat the generation module for one more dimension to get 16 initial frames.
But only relying on these 16 initial frames cannot generate a video.
Researchers need to produce a high-definition video from these 16 main frames. Their approach is to access previous and future frames and iteratively interpolate them in both the temporal and spatial dimensions simultaneously.
In this way, between these 16 initial frames, they generated new, larger frames based on the frames before and after, so that the motion became coherent and the overall video became Gotta be smooth.
This is done through a frame interpolation network, which can take existing images to fill in the gaps and generate intermediate information. In the spatial dimension, it does the same thing: enlarges the image, fills in the gaps in pixels, and makes the image more high-definition.
To summarize, to generate videos, the researchers fine-tuned a text-to-image model. They took a powerful model that was already trained, tweaked and trained it to adapt to the video.
Because of the addition of spatial and temporal modules, simply adapting the model to this new data without having to retrain it saves a lot of cost.
This kind of retraining uses unlabeled videos and only needs to teach the model to understand the consistency of the video and video frames, which makes it easier to build the data set.
Finally, the researchers used the image optimization model again to improve the spatial resolution, and used the frame interpolation component to add more frames to make the video smoother.
Of course, the current results of Make-A-Video still have shortcomings, just like the text-to-image model. But we all know how rapid the progress in the field of AI is.
If you want to know more, you can refer to the Meta AI paper in the link. The community is also developing a PyTorch implementation, so stay tuned if you want to implement it yourself.
Author introduction
There are many Chinese researchers involved in this paper: Yin Xi, An Jie, Zhang Songyang , Qiyuan Hu.
Yin Xi, FAIR research scientist. Previously worked for Microsoft as a senior application scientist for Microsoft Cloud and AI. He received his PhD from the Department of Computer Science and Engineering at Michigan State University and his bachelor's degree in electrical engineering from Wuhan University in 2013. The main research areas are multi-modal understanding, large-scale target detection, face reasoning, etc.
Anjie is a doctoral student in the Department of Computer Science at the University of Rochester. Study under Professor Roger Bo. Previously received bachelor's and master's degrees from Peking University in 2016 and 2019. Research interests include computer vision, deep generative models, and AI art. Participated in Make-A-Video research as an intern.
Zhang Songyang is a doctoral student in the Department of Computer Science at the University of Rochester, studying under Professor Roger Bo. He received his bachelor's degree from Southeast University and his master's degree from Zhejiang University. Research interests include natural language moment localization, unsupervised grammar induction, skeleton-based action recognition, etc. Participated in Make-A-Video research as an intern.
Qiyuan Hu, then an AI Resident at FAIR, was engaged in research on multi-modal generative models that improve human creativity. She received her PhD in medical physics from the University of Chicago and worked on AI-assisted medical image analysis. Now working at Tempus Labs as a machine learning scientist.
Netizens were greatly shocked
Some time ago, major companies such as Google released their own text-to-image models, such as Parti, and so on.
Some even think that text-to-video generative models are still some time away.
Unexpectedly, Meta dropped a bombshell this time.
In fact, today, there is also a text-to-video generation model Phenaki, which has been submitted to ICLR 2023. Since it is still in the blind review stage, the author's institution is still unknown.
Netizens said that from DALLE to Stable Diffuson to Make-A-Video, everything happened too fast.
The above is the detailed content of Meta's innovative SOTA model can generate amazing videos based on one sentence, setting off an Internet craze!. For more information, please follow other related articles on the PHP Chinese website!

For those of you who might be new to my column, I broadly explore the latest advances in AI across the board, including topics such as embodied AI, AI reasoning, high-tech breakthroughs in AI, prompt engineering, training of AI, fielding of AI, AI re

Europe's ambitious AI Continent Action Plan aims to establish the EU as a global leader in artificial intelligence. A key element is the creation of a network of AI gigafactories, each housing around 100,000 advanced AI chips – four times the capaci

Microsoft's Unified Approach to AI Agent Applications: A Clear Win for Businesses Microsoft's recent announcement regarding new AI agent capabilities impressed with its clear and unified presentation. Unlike many tech announcements bogged down in te

Shopify CEO Tobi Lütke's recent memo boldly declares AI proficiency a fundamental expectation for every employee, marking a significant cultural shift within the company. This isn't a fleeting trend; it's a new operational paradigm integrated into p

IBM's z17 Mainframe: Integrating AI for Enhanced Business Operations Last month, at IBM's New York headquarters, I received a preview of the z17's capabilities. Building on the z16's success (launched in 2022 and demonstrating sustained revenue grow

Unlock unshakeable confidence and eliminate the need for external validation! These five ChatGPT prompts will guide you towards complete self-reliance and a transformative shift in self-perception. Simply copy, paste, and customize the bracketed in

A recent [study] by Anthropic, an artificial intelligence security and research company, begins to reveal the truth about these complex processes, showing a complexity that is disturbingly similar to our own cognitive domain. Natural intelligence and artificial intelligence may be more similar than we think. Snooping inside: Anthropic Interpretability Study The new findings from the research conducted by Anthropic represent significant advances in the field of mechanistic interpretability, which aims to reverse engineer internal computing of AI—not just observe what AI does, but understand how it does it at the artificial neuron level. Imagine trying to understand the brain by drawing which neurons fire when someone sees a specific object or thinks about a specific idea. A

Qualcomm's Dragonwing: A Strategic Leap into Enterprise and Infrastructure Qualcomm is aggressively expanding its reach beyond mobile, targeting enterprise and infrastructure markets globally with its new Dragonwing brand. This isn't merely a rebran


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1
Powerful PHP integrated development environment

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment