File size: 9,232 Bytes
f9e029c f451d29 29605cf f451d29 f9e029c b4f2062 1e01ad4 fa64db6 f9e029c 0c27252 f9e029c aed6d2b 6d1603b f9e029c aed6d2b 6d1603b f9e029c bb12339 f9e029c aed6d2b f9e029c fa64db6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 | # AsymmetricMagVitV2
*[AsymmetricMagVitV2_16z](https://huggingface.co/BornFly/AsymmetricMagVitV2_16z)*
Lightweight open-source reproduction of MagVitV2, fully aligned with the paper’s functionality. Supports image and video joint encoding and decoding, as well as videos of arbitrary length and resolution.
* All spatio-temporal operators are implemented using causal 3D to avoid video instability caused by 2D+1D, ensures that the FVD does not sudden increases.
* The Encoder and Decoder support arbitrary resolutions, support auto-regressive inference for arbitrary durations.
* Training employs multi-resolution and dynamic-duration mixed training, allowing decoding of videos with arbitrary odd frames as long as GPU memory permits, demonstrating temporal extrapolation capability.
* The model is closely aligned with MagVitV2 but with reduced parameter, particularly in the lightweight Encoder, reducing the burden of caching VAE features.
*[github_link: https://github.com/bornfly-detachment/asymmetric_magvitv2](https://github.com/bornfly-detachment/asymmetric_magvitv2)*
## Contents
- [Installation](#installation)
- [Model Weights](#model-weights)
- [Metric](#metric)
- [Inference](#inference)
- [TODO List](#1)
- [Contact Us](#2)
- [Reference](#3)
## Demo
### 4 channel VAE video reconstruction
##### video reconstruction
Original video (above) & VAE Reconstruction video (below)
<table>
<tr>
<td width="50%">
<a href="https://github.com/bornfly-detachment/asymmetric_magvitv2/assets/174133722/2ec0bc1b-7a32-4949-a68f-d512bd4c5411">
<img src="https://github.com/bornfly-detachment/asymmetric_magvitv2/assets/174133722/2ec0bc1b-7a32-4949-a68f-d512bd4c5411" alt="60s 3840x2160" style="width: 100%;">
</a>
</td>
<td width="50%">
<a href="https://github.com/bornfly-detachment/asymmetric_magvitv2/assets/174133722/c8df652d-e7b9-42ff-a554-1271d5a0bce1">
<img src="https://github.com/bornfly-detachment/asymmetric_magvitv2/assets/174133722/c8df652d-e7b9-42ff-a554-1271d5a0bce1" alt="60s 1920x1080" style="width: 100%;">
</a>
</td>
</tr>
</table>
* Converting MP4 to GIF may result in detail loss, pixelation, and incomplete duration. It is recommended to watch the original video for the best experience.
###### 60s 3840x2160
[bilibili_Black Myth:Wu KongULR 4zVAE](https://www.bilibili.com/video/BV1mjaPe8EWn/?spm_id_from=333.999.0.0&vd_source=681432e843390b0f7192d64fa4ed9613)
###### 60s 1920x1080
[bilibili_tokyo_walk ULR 4zVAE](https://www.bilibili.com/video/BV1cCaceLEiq/?t=8.7&vd_source=681432e843390b0f7192d64fa4ed9613)
##### image reconstruction
<table>
<tr>
<td><img src="data/show/images/4z/mj_1.png" alt="1" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_2.png" alt="2" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_3.png" alt="3" style="width:100%;"></td>
</tr>
<tr>
<td><img src="data/show/images/4z/mj_4.png" alt="4" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_5.png" alt="5" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_6.png" alt="6" style="width:100%;"></td>
</tr>
<tr>
<td><img src="data/show/images/4z/mj_7.png" alt="7" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_8.png" alt="8" style="width:100%;"></td>
<td><img src="data/show/images/4z/mj_9.png" alt="9" style="width:100%;"></td>
</tr>
</table>
* The original images are located in data/images
### Installation
<a name="installation"></a>
#### 1. Clone the repo
```shell
git clonehttps://github.com/bornfly-detachment/AsymmetricMagVitV2.git
cd AsymmetricMagVitV2
```
#### 2. Setting up the virtualenv
This is assuming you have navigated to the `AsymmetricMagVitV2` root after cloning it.
```shell
# install required packages from pypi
python3 -m venv .pt2
source .pt2/bin/activate
pip3 install -r requirements/pt2.txt
```
### Model Weights
| model | downsample (THW) | Encoder Size | Decoder Size|
|--------|--------|------|------|
|svd 2Dvae|1x8x8|34M|64M|
|AsymmetricMagVitV2|4x8x8|100M|159M|
| model | Data | #iterations | URL |
|------------------------|--------------|-------------|-----------------------------------------------------------------------|
| AsymmetricMagVitV2_4z |20M Intervid | 2node 1200k | [AsymmetricMagVitV2_4z](https://huggingface.co/BornFlyReborn/AsymmetricMagVitV2_4z) |
| AsymmetricMagVitV2_16z |20M Intervid | 4node 860k | [AsymmetricMagVitV2_16z](https://huggingface.co/BornFlyReborn/AsymmetricMagVitV2_16z) |
</details>
### Metric
<a name="Metric"></a>
|model|temporal-frame| fvd(↓) |fid(↓)|psnr(↑)|ssim(↑)|
|-----|----|-----------|--|----|----|
|SVD VAE|1 | 190.6 |1.8|28.2|1.0|
|openSoraPlan|1 | 249.8 |1.04|29.6|0.99|
|openSoraPlan|17 | 725.4 |3.17|23.4|0.89|
|openSoraPlan|33 | 756.8 |3.5|23|0.89|
|AsymmetricMagVitV2_4z|1 | 113.5 |1.4|29.8|1.0|
|AsymmetricMagVitV2_4z|17 | 278.5 |2.3|26.4|1.0|
|AsymmetricMagVitV2_4z|33 | 293.3 |2.5|26.3|1.0|
Note:
1. The test video is the original scale of data/videos/tokyo_walk.mp4. Previously, preprocessing with resize+CenterCrop256
resolution was also tested on a larger test set, and the results showed consistent trends. Now, it has been found
that high-resolution and original-sized videos pose the most challenging task for 3DVAE. Therefore, only this one video was tested,
configured at 8fps, and evaluated for the first 10 seconds.
2. The evaluation code can be referenced in models/evaluation.py. However, it has been a while since I last ran it,
and there have been modifications to the inference code. Calculating FID and FVD scores depends on the model,
original image preprocessing, inference hyperparameters, and the randomness introduced by sampling encoder KL.
As a result, scores cannot be accurately reproduced. Nonetheless, this can serve as a reference for designing
one’s own benchmark.
### Inference
#### About Encoder hyperparameter configuration
* slice frame spatial using: --max_siz --min_size
* slice video temporal using: --encoder_init_window --encoder_window
If the GPU VRAM is not sufficient, metrics for evaluation can be adjusted to be between 256 and 512 at maximum.
#### About Decoder hyperparameter configuration
* slice latent spatial using: --min_latent_size --max_latent_size
(default GPU VRAM needs to exceed 28GB. If the GPU VRAM is not sufficient, metrics for evaluation can be adjusted to be between 32=256p/8 and 64=512p/8 at maximum.)
* slice latent temporal using: --decoder_init_window,
5 frames of latent space corresponds to 17 frames of the original video.
The calculation formula is as follows: latent_T_dim = (frame_T_dim - 1) / temporal_downsample_num; in this model, temporal_downsample_num=4
#### Use AsymmetricMagVitV2 in your own code
```python
from models.vae import AsymmetricMagVitV2Pipline
import torch
from models.utils.image_op import imdenormalize, imnormalize, read_video, read_image
import torchvision.transforms as transforms
device = "cuda" if torch.cuda.is_available() else "cpu"
dtype = torch.bfloat16
encoder_init_window = 17
input_path = "data/videos/tokyo_walk.mp4"
img_transform = transforms.Compose([transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5))])
input, last_frame_id = read_video(input_path, encoder_init_window, sample_fps=8, img_transform, start=0)
model = AsymmetricMagVitV2Pipline.from_pretrained("BornFly/AsymmetricMagVitV2_4z").to(device, dtype).eval()
init_z, reg_log = model.encode(input, encoder_init_window, is_init_image=True, return_reg_log=True, unregularized=False)
init_samples = model.decode(init_z.to(device, dtype), decode_batch_size=1, is_init_image=True)
```
#### High-resolution video encoding and decoding, greater than 720p(spatial-temporal slice)
##### 1. encode & decode video
```shell
python infer_vae.py --input_path data/videos/tokyo-walk.mp4 --model_path vae_16z_bf16_hf --output_folder vae_eval_out/vae_4z_bf16_hf_videos > infer_vae_video.log 2>&1
```
##### 2. encode & decode image
```shell
python infer_vae.py --input_path data/images --model_path vae_16z_bf16_hf --output_folder vae_eval_out/vae_4z_bf16_hf_images > infer_vae_image.log 2>&1
```
### TODO List
<p id="1"></p>
* Reproducing Sora, a 16-channel VAE integrated with SD3. Due to limited computational resources, the focus is on generating 1K high-definition dynamic wallpapers.
* Reproducing VideoPoet, supporting multimodal joint representation. Due to limited computational resources, the focus is on generating music videos.
### Contact Us
<p id="2"></p>
1. If there are any code-related questions, feel free to contact me via email——bornflyborntochange@outlook.com.
2. You need to scan the image to join the WeChat group or if it is expired, add this student as a friend first to invite you.
<img src="data/assets/mmqrcode1720196270375.png" alt="ding group" width="30%"/>
### Reference
<p id="3"></p>
- SVD: https://github.com/Stability-AI/generative-models
- Open-Sora-Plan: https://github.com/PKU-YuanGroup/Open-Sora-Plan
|