A Pytorch Implementation of the continuously rate adjustable learned image compression framework, Gained Variational Autoencoder(GainedVAE).
Note that This Is Not An Official Implementation Code.
More details can be found in the following paper:
Asymmetric Gained Deep Image Compression With Continuous Rate Adaptation.
Huawei Technologies, CVPR 2021
Ze Cui, Jing Wang, Shangyin Gao, Tiansheng Guo, Yihui Feng, Bo Bai
Todo: Reproduce Implementation of the following paper:
INTERPOLATION VARIABLE RATE IMAGE COMPRESSION
Alibaba Group, ACM Multimedia 2021 Zhenhong Sun, Zhiyu Tan, Xiuyu Sun, Fangyi Zhang, Yichen Qian, Dongyang Li, Hao Li
- Python == 3.7.10
- Pytorch == 1.7.1
- CompressAI
I use a part of the OpenImages Dataset to train the models (train06, train07, train08, about 54w images). You can download from here. Download OpenImages Maybe train08 (14w images) is enough.
The dataset fold structure is as follows:
.dataset/
│
├─test
│ kodim01.png
│ kodim02.png
│ kodim03.png
...
├─train
│ 000002b66c9c498e.jpg
│ 000002b97e5471a0.jpg
│ 000002c707c9895e.jpg
...
python3 trainGain.py -d /path/to/your/image/dataset/ --epochs 200 -lr 1e-4 --batch-size 16 --model-save /path/to/your/model/save/dir --cuda
I try to train the Gained Mean-Scale Hyperprior model/Gained Scale Hyperprior model. See details in ./results I retrained the single rate baseline but can not achieve the official performance. Results from Google tensorflow/compression library is very strong probably because of their large and diverse training data set and long training time.
You can download the checkpoint trained by me from Pretrained Model.
The framework is based on CompressAI, I add the model in compressai.models.gain, compressai.models.gain_utils.
And trainGain/trainGain.py is modified with reference to compressai_examples/train.py.
"Variable-Rate Deep Image Compression through Spatially-Adaptive Feature Transform" (ICCV 2021).
code
"Variable Bitrate Image Compression with Quality Scaling Factors" (ICASSP 2020).
code
"Variable Rate Deep Image Compression with Modulated Autoencoders" (IEEE SPL 2020)
code
"Slimmable Compressive Autoencoders for Practical Neural Image Compression" (CVPR 2021)
code
Feel free to contact me if there is any question about the code or to discuss any problems with image and video compression. ([email protected])