Skip to content

Commit

Permalink
Bump version to v0.2.0 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
MeowZheng authored Jan 7, 2022
1 parent a59279a commit 88b73e9
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ https://user-images.githubusercontent.com/76149310/141947796-af4f1e67-60c9-48ed-

This project is released under the [Apache 2.0 license](LICENSE).

## Changelog

**0.2.0** was released in 07/01/2022:

- Support [GMA](../../configs/gma/README.md): Learning to Estimate Hidden Motions with Global Motion Aggregation (ICCV 2021)
- Fix the bug of wrong refine iter in RAFT, and update [RAFT](../../configs/raft/README.md) model checkpoint after the bug fixing
- Support resuming from the latest checkpoint automatically

Please refer to [changelog.md](docs/en/changelog.md) for details and release history.

## Benchmark and model zoo

Results and models are available in the [model zoo](docs/en/model_zoo.md).
Expand Down
10 changes: 10 additions & 0 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,16 @@ https://user-images.githubusercontent.com/76149310/141947796-af4f1e67-60c9-48ed-

该项目采用 [Apache 2.0 开源许可证](LICENSE)

## 更新日志

最新的 0.2.0 版本已经在 2022.01.07 发布:

- 支持的新算法 [GMA (ICCV'2021)](../../configs/gma/README.md): Learning to Estimate Hidden Motions with Global Motion Aggregation
- 修复 RAFT 算法 refine iter 的 bug,并更新模型权重文件
- 支持了自动从最新的存储参数节点恢复训练

如果想了解更多版本更新细节和历史信息,请参考[更新日志](docs/en/changelog.md)

## 基准测试和模型库

测试结果和模型可以在[模型库](docs/zh_cn/model_zoo.md)中找到。
Expand Down
40 changes: 40 additions & 0 deletions docs/en/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Changelog

## v0.2.0(07/01/2022)

### Highlights

- Support [GMA](../../configs/gma/README.md): Learning to Estimate Hidden Motions with Global Motion Aggregation (ICCV 2021) (#32)
- Fix the bug of wrong refine iter in RAFT, and update [RAFT](../../configs/raft/README.md) model checkpoint after the bug fixing (#62, #68)
- Support resuming from the latest checkpoint automatically (#71)

### Features

- Add `scale_as_level` for multi-level flow loss (#58)
- Add `scale_mode` for correlation block (#56)
- Add `upsample_cfg` in IRR-PWC decoder (#53)

### Bug Fixes

- Resized input image must be dividable by 2^6 (#65)
- Fix RAFT wrong refine iter after evaluation (#62)

### Improvements

- Add `persistent_workers=True` in `val_dataloader` (#63)
- Revise `env_info` key (#46)
- Add digital version (#43)
- Try to create a symbolic link on windows (#37)
- Set a random seed when the user does not set a seed (#27)

### Refactors

- Refactor utils in models (#50)

### Documents

- Refactor documentation (#14)
- Fix script bug in FlyingChairs dataset prepare (#21)
- Fix broken links in model_zoo (#60)
- Update metafile (#39, #41, #49)
- Update documentation (#28, #35, #36, #47, #48, #70)
2 changes: 1 addition & 1 deletion mmflow/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Copyright (c) OpenMMLab. All rights reserved.

__version__ = '0.1.0'
__version__ = '0.2.0'
short_version = __version__


Expand Down

0 comments on commit 88b73e9

Please sign in to comment.