Skip to content

Commit 6e25a77

Browse files
authored
Merge pull request #35 from nbei/0.2.0
Bump to version v0.2.0
2 parents 5efbb23 + 9024fc7 commit 6e25a77

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,10 @@ MMGeneration is a powerful toolkit for generative models, especially for GANs no
5757
## Highlight
5858

5959
* **Positional Encoding as Spatial Inductive Bias in GANs (CVPR2021)** has been released in `MMGeneration`. [\[Config\]](configs/positional_encoding_in_gans/README.md), [\[Project Page\]](https://nbei.github.io/gan-pos-encoding.html)
60+
* Mixed-precision training (FP16) for StyleGAN2 has been supported. Please check [the comparison](configs/styleganv2/README.md) between different implementations.
6061
## Changelog
6162

62-
v0.1.0 was released on 20/04/2021. Please refer to [changelog.md](docs/changelog.md) for details and release history.
63+
v0.2.0 was released on 30/05/2021. Please refer to [changelog.md](docs/changelog.md) for details and release history.
6364

6465
## ModelZoo
6566

@@ -71,6 +72,8 @@ These methods have been carefully studied and supported in our frameworks:
7172

7273
-[DCGAN](configs/dcgan/README.md) (ICLR'2016)
7374
-[WGAN-GP](configs/wgan-gp/README.md) (NIPS'2017)
75+
-[LSGAN](configs/lsgan/README.md) (ICCV'2017)
76+
-[GGAN](configs/ggan/README.md) (Axiv'2017)
7477
-[PGGAN](configs/pggan/README.md) (ICLR'2018)
7578
-[StyleGANV1](configs/styleganv1/README.md) (CVPR'2019)
7679
-[StyleGANV2](configs/styleganv2/README.md) (CVPR'2020)

README_zh-CN.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,10 @@ MMGeneration 是一个基于 PyTorch 和[MMCV](https://github.com/open-mmlab/mmc
5858
## 亮点
5959

6060
* **Positional Encoding as Spatial Inductive Bias in GANs (CVPR2021)** 已在 `MMGeneration` 中发布. [\[配置文件\]](configs/positional_encoding_in_gans/README.md), [\[项目主页\]](https://nbei.github.io/gan-pos-encoding.html)
61+
* 混合精度训练已经在 `StyleGAN2` 中进行了初步支持,请到[这里](configs/styleganv2/README.md)查看各种实现方式的详细比较。
6162
## 更新日志
6263

63-
v0.1.0 在 20/04/2021 发布。 关于细节和发布历史,请参考 [changelog.md](docs/changelog.md)
64+
v0.2.0 在 30/05/2021 发布。 关于细节和发布历史,请参考 [changelog.md](docs/changelog.md)
6465

6566
## 模型库
6667

@@ -72,6 +73,8 @@ v0.1.0 在 20/04/2021 发布。 关于细节和发布历史,请参考 [changel
7273

7374
-[DCGAN](configs/dcgan/README.md) (ICLR'2016)
7475
-[WGAN-GP](configs/wgan-gp/README.md) (NIPS'2017)
76+
-[LSGAN](configs/lsgan/README.md) (ICCV'2017)
77+
-[GGAN](configs/ggan/README.md) (Axiv'2017)
7578
-[PGGAN](configs/pggan/README.md) (ICLR'2018)
7679
-[StyleGANV1](configs/styleganv1/README.md) (CVPR'2019)
7780
-[StyleGANV2](configs/styleganv2/README.md) (CVPR'2020)

docs/changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,23 @@
1212
- Powerful Application Toolkit: A plentiful toolkit containing multiple applications in GANs is provided to users. GAN interpolation, GAN projection, and GAN manipulations are integrated into our framework. It's time to play with your GANs!
1313
- Efficient Distributed Training for Generative Models: For the highly dynamic training in generative models, we adopt a new way to train dynamic models with `MMDDP`.
1414
- New Modular Design for Flexible Combination: A new design for complex loss modules is proposed for customizing the links between modules, which can achieve flexible combination among different modules.
15+
16+
17+
## v0.2.0 (30/05/2021)
18+
19+
#### Highlights
20+
- Support new methods: LSGAN, GGAN.
21+
- Support mixed-precision training (FP16): official PyTorch Implementation and APEX (#11, #20)
22+
23+
#### New Features
24+
25+
- Add the experiment of MNIST in DCGAN (#24)
26+
- Add support for uploading checkpoints to `Ceph` system (cloud server) (#27)
27+
- Add the functionality of saving the best checkpoint in GenerativeEvalHook (#21)
28+
29+
#### Fix bugs and Improvements
30+
31+
- Fix loss of sample-cfg argument (#13)
32+
- Add `pbar` to offline eval and fix bug in grayscale image evaluation/saving (#23)
33+
- Fix error when data_root option in val_cfg or test_cfg are set as None (#28)
34+
- Change latex in quick_run.md to svg url and fix number of checkpoints in modelzoo_statistics.md (#34)

mmgen/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.2.0'
22

33

44
def parse_version_info(version_str):

0 commit comments

Comments
 (0)