Skip to content

Commit c749dcc

Browse files
authored
[Release] Release v1.2.0 (open-mmlab#2094)
* release * fix lint * fix lint
1 parent b08b6ca commit c749dcc

File tree

7 files changed

+180
-62
lines changed

7 files changed

+180
-62
lines changed

README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,9 @@ English | [简体中文](README_zh-CN.md)
5858

5959
## 🚀 What's New <a><img width="35" height="20" src="https://user-images.githubusercontent.com/12782558/212848161-5e783dd6-11e8-4fe0-bbba-39ffb77730be.png"></a>
6060

61-
### New release [**MMagic v1.1.0**](https://github.com/open-mmlab/mmagic/releases/tag/v1.1.0) \[22/09/2023\]:
61+
### New release [**MMagic v1.2.0**](https://github.com/open-mmlab/mmagic/releases/tag/v1.2.0) \[18/12/2023\]:
6262

63-
- Support ViCo, a new SD personalization method. [Click to View](https://github.com/open-mmlab/mmagic/blob/main/configs/vico/README.md)
64-
- Support AnimateDiff, a popular text2animation method. [Click to View](https://github.com/open-mmlab/mmagic/blob/main/configs/animatediff/README.md)
65-
- Support SDXL(Stable Diffusion XL). [Click to View](https://github.com/open-mmlab/mmagic/blob/main/configs/stable_diffusion_xl/README.md)
66-
- Support DragGAN implementation with MMagic. [Click to View](https://github.com/open-mmlab/mmagic/blob/main/configs/draggan/README.md)
67-
- Support FastComposer, a new multi-subject text-to-image generation method. [Click to View](https://github.com/open-mmlab/mmagic/blob/main/configs/fastcomposer/README.md)
63+
- An advanced and powerful inpainting algorithm named PowerPaint is released in our repository. [Click to View](https://github.com/open-mmlab/mmagic/tree/main/projects/powerpaint)
6864

6965
We are excited to announce the release of MMagic v1.0.0 that inherits from [MMEditing](https://github.com/open-mmlab/mmediting) and [MMGeneration](https://github.com/open-mmlab/mmgeneration).
7066

@@ -397,6 +393,7 @@ Please refer to [installation](docs/en/get_started/install.md) for more detailed
397393
<li><a href="configs/animatediff/README.md">AnimateDiff (2023)</a></li>
398394
<li><a href="configs/vico/README.md">ViCo (2023)</a></li>
399395
<li><a href="configs/fastcomposer/README.md">FastComposer (2023)</a></li>
396+
<li><a href="projects/powerpaint/README.md">PowerPaint (2023)</a></li>
400397
</ul>
401398
</td>
402399
<td>

README_zh-CN.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,9 @@
5858

5959
## 🚀 最新进展 <a><img width="35" height="20" src="https://user-images.githubusercontent.com/12782558/212848161-5e783dd6-11e8-4fe0-bbba-39ffb77730be.png"></a>
6060

61-
### 最新的 [**MMagic v1.1.0**](https://github.com/open-mmlab/mmagic/releases/tag/v1.1.0) 版本已经在 \[22/09/2023\] 发布:
61+
### 最新的 [**MMagic v1.2.0**](https://github.com/open-mmlab/mmagic/releases/tag/v1.2.0) 版本已经在 \[18/12/2023\] 发布:
6262

63-
- 支持ViCo,一种新的个性化方法,用于SD(Style Disentanglement)。[点击查看](https://github.com/open-mmlab/mmagic/blob/main/configs/vico/README.md)
64-
- 支持AnimateDiff,一种流行的文本转动画方法。[点击查看](https://github.com/open-mmlab/mmagic/blob/main/configs/animatediff/README.md)
65-
- 支持SDXL(Stable Diffusion XL)方法。[点击查看](https://github.com/open-mmlab/mmagic/blob/main/configs/stable_diffusion_xl/README.md)
66-
- 支持DragGAN方法的实现,使用MMagic。[点击查看](https://github.com/open-mmlab/mmagic/blob/main/configs/draggan/README.md)
67-
- 支持FastComposer, 一种新的多主体文本生成图像方法。[点击查看](https://github.com/open-mmlab/mmagic/blob/main/configs/fastcomposer/README.md)
63+
- 我们的代码仓库中发布了一个先进而强大的图像 inpainting 算法 PowerPaint。 [Click to View](https://github.com/open-mmlab/mmagic/tree/main/projects/powerpaint)
6864

6965
我们正式发布 MMagic v1.0.0 版本,源自 [MMEditing](https://github.com/open-mmlab/mmediting)[MMGeneration](https://github.com/open-mmlab/mmgeneration)
7066

@@ -393,6 +389,7 @@ pip3 install -e .
393389
<li><a href="configs/animatediff/README.md">AnimateDiff (2023)</a></li>
394390
<li><a href="configs/vico/README.md">ViCo (2023)</a></li>
395391
<li><a href="configs/fastcomposer/README.md">FastComposer (2023)</a></li>
392+
<li><a href="projects/powerpaint/README.md">PowerPaint (2023)</a></li>
396393
</ul>
397394
</td>
398395
<td>

docs/en/changelog.md

+51
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
# Changelog
22

3+
**Highlights**
4+
5+
- An advanced and powerful inpainting algorithm named PowerPaint is released in our repository. [Click to View](https://github.com/open-mmlab/mmagic/tree/main/projects/powerpaint)
6+
7+
<div align=center>
8+
<img src="https://github.com/open-mmlab/mmagic/assets/12782558/eba2c6a4-3ff4-4075-a027-0e9799769bf9"/>
9+
</div>
10+
11+
**New Features & Improvements**
12+
13+
- \[Release\] Post release for v1.1.0 by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2043
14+
- \[CodeCamp2023-645\]Add dreambooth new cfg by @YanxingLiu in https://github.com/open-mmlab/mmagic/pull/2042
15+
- \[Enhance\] add new config for _base_ dir by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2053
16+
- \[Enhance\] support using from_pretrained for instance_crop by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2066
17+
- \[Enhance\] update support for latest diffusers with lora by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2067
18+
- \[Feature\] PowerPaint by @zhuang2002 in https://github.com/open-mmlab/mmagic/pull/2076
19+
- \[Enhance\] powerpaint improvement by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2078
20+
- \[Enhance\] Improve powerpaint by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2080
21+
- \[Enhance\] add outpainting to gradio_PowerPaint.py by @zhuang2002 in https://github.com/open-mmlab/mmagic/pull/2084
22+
- \[MMSIG\] Add new configuration files for StyleGAN2 by @xiaomile in https://github.com/open-mmlab/mmagic/pull/2057
23+
- \[MMSIG\] \[Doc\] Update data_preprocessor.md by @jinxianwei in https://github.com/open-mmlab/mmagic/pull/2055
24+
- \[Enhance\] Enhance PowerPaint by @zhuang2002 in https://github.com/open-mmlab/mmagic/pull/2093
25+
26+
**Bug Fixes**
27+
28+
- \[Fix\] Update README.md by @eze1376 in https://github.com/open-mmlab/mmagic/pull/2048
29+
- \[Fix\] Fix test tokenizer by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2050
30+
- \[Fix\] fix readthedocs building by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2052
31+
- \[Fix\] --local-rank for PyTorch >= 2.0.0 by @youqingxiaozhua in https://github.com/open-mmlab/mmagic/pull/2051
32+
- \[Fix\] animatediff download from openxlab by @JianxinDong in https://github.com/open-mmlab/mmagic/pull/2061
33+
- \[Fix\] fix best practice by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2063
34+
- \[Fix\] try import expand mask from transformers by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2064
35+
- \[Fix\] Update diffusers to v0.23.0 by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2069
36+
- \[Fix\] add openxlab link to powerpaint by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2082
37+
- \[Fix\] Update swinir_x2s48w8d6e180_8xb4-lr2e-4-500k_div2k.py, use MultiValLoop. by @ashutoshsingh0223 in https://github.com/open-mmlab/mmagic/pull/2085
38+
- \[Fix\] Fix a test expression that has a logical short circuit. by @munahaf in https://github.com/open-mmlab/mmagic/pull/2046
39+
- \[Fix\] Powerpaint to load safetensors by @sdbds in https://github.com/open-mmlab/mmagic/pull/2088
40+
41+
**New Contributors**
42+
43+
- @eze1376 made their first contribution in https://github.com/open-mmlab/mmagic/pull/2048
44+
- @youqingxiaozhua made their first contribution in https://github.com/open-mmlab/mmagic/pull/2051
45+
- @JianxinDong made their first contribution in https://github.com/open-mmlab/mmagic/pull/2061
46+
- @zhuang2002 made their first contribution in https://github.com/open-mmlab/mmagic/pull/2076
47+
- @ashutoshsingh0223 made their first contribution in https://github.com/open-mmlab/mmagic/pull/2085
48+
- @jinxianwei made their first contribution in https://github.com/open-mmlab/mmagic/pull/2055
49+
- @munahaf made their first contribution in https://github.com/open-mmlab/mmagic/pull/2046
50+
- @sdbds made their first contribution in https://github.com/open-mmlab/mmagic/pull/2088
51+
52+
**Full Changelog**: https://github.com/open-mmlab/mmagic/compare/v1.1.0...v1.2.0
53+
354
## v1.1.0 (22/09/2023)
455

556
**Highlights**

docs/zh_cn/changelog.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# 变更日志
22

3+
**亮点**
4+
5+
- 我们的代码仓库中发布了一个先进而强大的图像 inpainting 算法 PowerPaint。 [Click to View](https://github.com/open-mmlab/mmagic/tree/main/projects/powerpaint)
6+
7+
<div align=center>
8+
<img src="https://github.com/open-mmlab/mmagic/assets/12782558/eba2c6a4-3ff4-4075-a027-0e9799769bf9"/>
9+
</div>
10+
11+
**新功能和改进**
12+
13+
- \[CodeCamp2023-645\] 新增 dreambooth 的new cfg, by @YanxingLiu in https://github.com/open-mmlab/mmagic/pull/2042
14+
- \[Enhance\] 新增 _base_ 目录下的 new config by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2053
15+
- \[Enhance\] 支持了 instance_crop 使用 from_pretrained by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2066
16+
- \[Enhance\] 支持了最新的 diffusers 使用 lora by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2067
17+
- \[Enhance\] 提升了 powerpaint by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2078
18+
- \[Enhance\] 提升了 powerpaint by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2080
19+
- \[Enhance\] 增加了 gradio_PowerPaint.py 的 outpainting by @zhuang2002 in https://github.com/open-mmlab/mmagic/pull/2084
20+
- \[MMSIG\] 增加了 StyleGAN2 的新config by @xiaomile in https://github.com/open-mmlab/mmagic/pull/2057
21+
- \[MMSIG\] \[Doc\] 更新了 data_preprocessor.md by @jinxianwei in https://github.com/open-mmlab/mmagic/pull/2055
22+
- \[Enhance\] 提升了 PowerPaint by @zhuang2002 in https://github.com/open-mmlab/mmagic/pull/2093
23+
24+
**Bug 修复**
25+
26+
- \[Fix\] 更新了 README.md by @eze1376 in https://github.com/open-mmlab/mmagic/pull/2048
27+
- \[Fix\] 修复了 test tokenizer by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2050
28+
- \[Fix\] 修复了 readthedocs building by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2052
29+
- \[Fix\] 修复了 --local-rank for PyTorch >= 2.0.0 by @youqingxiaozhua in https://github.com/open-mmlab/mmagic/pull/2051
30+
- \[Fix\] 修复了 animatediff download from openxlab by @JianxinDong in https://github.com/open-mmlab/mmagic/pull/2061
31+
- \[Fix\] 修复了 best practice by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2063
32+
- \[Fix\] 修复了 try import expand mask from transformers by @zengyh1900 in https://github.com/open-mmlab/mmagic/pull/2064
33+
- \[Fix\] 更新了 diffusers to v0.23.0 by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2069
34+
- \[Fix\] 修复了 openxlab link to powerpaint by @liuwenran in https://github.com/open-mmlab/mmagic/pull/2082
35+
- \[Fix\] 更新了 swinir_x2s48w8d6e180_8xb4-lr2e-4-500k_div2k.py, use MultiValLoop. by @ashutoshsingh0223 in https://github.com/open-mmlab/mmagic/pull/2085
36+
- \[Fix\] 修复了 a test expression that has a logical short circuit. by @munahaf in https://github.com/open-mmlab/mmagic/pull/2046
37+
- \[Fix\] 修复了 Powerpaint load safetensors by @sdbds in https://github.com/open-mmlab/mmagic/pull/2088
38+
39+
**新贡献者**
40+
41+
- @eze1376 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2048
42+
- @youqingxiaozhua 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2051
43+
- @JianxinDong 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2061
44+
- @zhuang2002 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2076
45+
- @ashutoshsingh0223 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2085
46+
- @jinxianwei 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2055
47+
- @munahaf 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2046
48+
- @sdbds 首次贡献于 https://github.com/open-mmlab/mmagic/pull/2088
49+
50+
**完整更新日志**: https://github.com/open-mmlab/mmagic/compare/v1.1.0...v1.2.0
51+
352
## v1.1.0 (22/09/2023)
453

554
**亮点**

mmagic/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) Open-MMLab. All rights reserved.
22

3-
__version__ = '1.1.0dev0'
3+
__version__ = '1.2.0'
44

55

66
def parse_version_info(version_str):

projects/powerpaint/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ This README provides a step-by-step guide to download the repository, set up the
1212

1313
- We are delighted to announce the release of more stable model weights. These refined weights can now be accessed on [Hugging Face](https://huggingface.co/JunhaoZhuang/PowerPaint-v1/tree/main). The `gradio_PowerPaint.py` file and [Online Demo](https://openxlab.org.cn/apps/detail/rangoliu/PowerPaint) have also been updated as part of this release.
1414

15-
1615
## Next
1716

1817
**Stronger Model Weights Coming Soon!**
1918

20-
________________
19+
______________________________________________________________________
20+
2121
<img src='https://github.com/open-mmlab/mmagic/assets/12782558/acd01391-c73f-4997-aafd-0869aebcc915'/>
2222

2323
## Getting Started

0 commit comments

Comments
 (0)