Skip to content

Commit

Permalink
Bump version to 0.5.0 (#214)
Browse files Browse the repository at this point in the history
* dumps to 0.5.0

* fix known issue

* fix bug

* update chenge log

* update chenge log
  • Loading branch information
LeoXing1996 authored Jan 12, 2022
1 parent 5959c64 commit 6d629b7
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ MMGeneration is a powerful toolkit for generative models, especially for GANs no
* Mixed-precision training (FP16) for StyleGAN2 has been supported. Please check [the comparison](configs/styleganv2/README.md) between different implementations.
## Changelog

v0.4.0 was released on 03/11/2021. Please refer to [changelog.md](docs/en/changelog.md) for details and release history.
v0.5.0 was released on 12/01/2022. Please refer to [changelog.md](docs/en/changelog.md) for details and release history.

## ModelZoo

Expand Down
2 changes: 1 addition & 1 deletion README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ MMGeneration 是一个基于 PyTorch 和[MMCV](https://github.com/open-mmlab/mmc
* 混合精度训练已经在 `StyleGAN2` 中进行了初步支持,请到[这里](configs/styleganv2/README.md)查看各种实现方式的详细比较。
## 更新日志

v0.3.0 在 02/08/2021 发布。 关于细节和发布历史,请参考 [changelog.md](docs/changelog.md)
v0.5.0 在 12/02/2022 发布。 关于细节和发布历史,请参考 [changelog.md](docs/zh_cn/changelog.md)

## 模型库

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build
# Install MMCV
RUN pip install mmcv-full==1.3.16 -f https://download.openmmlab.com/mmcv/dist/cu111/torch1.8.0/index.html

# Install MMFlow
# Install MMGeneration
RUN conda clean --all
RUN git clone https://github.com/open-mmlab/mmgeneration.git /mmgen
WORKDIR /mmgen
Expand Down
25 changes: 25 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
## v0.2.0 (30/05/2021)

#### Highlights

- Support new methods: LSGAN, GGAN.
- Support mixed-precision training (FP16): official PyTorch Implementation and APEX (#11, #20)

Expand All @@ -37,6 +38,7 @@
## v0.3.0 (02/08/2021)

#### Highlights

- Support conditional GANs: Projection GAN, SNGAN, SAGAN, and BigGAN

#### New Features
Expand All @@ -54,6 +56,7 @@
## v0.4.0 (03/11/2021)

#### Highlights

- Add more experiments for conditional GANs: SNGAN, SAGAN, and BigGAN
- Refact Translation Model (#88, #126, #127, #145)

Expand All @@ -67,3 +70,25 @@
- Add CI for python3.9 #110
- Add support for PyTorch1.9 #115
- Add pre-commit hook for spell checking #135


## v0.5.0 (12/01/2022)

#### Highlights

- Support BigGAN style's Spectral Norm and update BigGAN with best FID and IS (#159)
- Support import projected latent and export video in interpolation (#167)
- Support Improved-DDPM model (#205)
- One face editing application build upon MMGen is released

#### New Features

- Support evaluation in distributed mode (#151)
- Support `presistent_work` in validation dataloader (#179)
- Support dockerfile (#200)
- Support `mim` (#176)

#### Fix bugs and Improvements

- Fix bug in SinGAN dataset (#192)
- Fix SAGAN, SNGAN and BigGAN's default `sn_style` (#199, #213)
2 changes: 1 addition & 1 deletion mmgen/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (c) OpenMMLab. All rights reserved.
__version__ = '0.4.0'
__version__ = '0.5.0'


def parse_version_info(version_str):
Expand Down
2 changes: 1 addition & 1 deletion requirements/mminstall.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mmcls>=0.18.0,<=0.18.0
mmcv-full>=1.3.0,<=1.4.0
mmcv-full>=1.3.0,<=1.5.0

0 comments on commit 6d629b7

Please sign in to comment.