Skip to content

Commit

Permalink
update doc for release/1.0 (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerrywgz authored Oct 7, 2023
1 parent e4ef03e commit f4def6d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ PaddleMIX是基于飞桨的跨模态大模型开发套件,聚合图像、文

## 最新进展

**2023.10.7 发布 PaddleMIX v1.0**
* 新增图文预训练模型分布式训练能力,BLIP-2支持千亿规模训练
* 新增跨模态应用流水线[AppFlow](./applications/README.md),一键支持自动标注,图像编辑,音生图等11种跨模态应用
* [PPDiffusers](./ppdiffusers/README.md)发布 0.19.3 版本,新增SDXL及相关任务

**2023.7.31 发布 PaddleMIX v0.1**
* 首次发布PaddleMIX跨模态大模型开发套件,融合PPdiffusers多模态扩散模型工具箱,广泛支持PaddleNLP大语言模型
* 首次发布PaddleMIX跨模态大模型开发套件,融合PPDiffusers多模态扩散模型工具箱,广泛支持PaddleNLP大语言模型
* 新增EVA-CLIP,BLIP-2,miniGPT-4,Stable Diffusion,ControlNet等12个跨模态大模型

## 主要特性
Expand Down Expand Up @@ -93,6 +98,8 @@ pip install -e .
<li><b>图文预训练</b></li>
<ul>
<li><a href="paddlemix/examples/evaclip">EVA-CLIP</a></li>
<li><a href="paddlemix/examples/coca">CoCa</a></li>
<li><a href="paddlemix/examples/clip">CLIP</a></li>
<li><a href="paddlemix/examples/blip2">BLIP-2</a></li>
<li><a href="paddlemix/examples/minigpt4">miniGPT-4</a></li>
<li><a href="paddlemix/examples/visualglm">VIsualGLM</a></li>
Expand All @@ -103,6 +110,11 @@ pip install -e .
<li><a href="paddlemix/examples/groundingdino">Grounding DINO</a></li>
<li><a href="paddlemix/examples/Sam">SAM</a></li>
</ul>
</ul>
<li><b>更多模态预训练模型</b></li>
<ul>
<li><a href="paddlemix/examples/imagebind">ImageBind</a></li>
</ul>
</td>
<td>
<ul>
Expand All @@ -119,6 +131,11 @@ pip install -e .
<ul>
<li><a href="ppdiffusers/ppdiffusers/pipelines/lvdm">LVDM</a></li>
</ul>
</ul>
<li><b>音频生成</b></li>
<ul>
<li><a href="ppdiffusers/ppdiffusers/pipelines/audioldm">AudioLDM</a></li>
</ul>
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function build_and_install() {
echo -e "${BLUE}[build]${NONE} building paddlemix wheel..."
# add ppdiffusers as dependency to paddlemix
cp requirements.txt requirements.bak
echo 'ppdiffusers==0.16.3' >> requirements.txt
echo 'ppdiffusers==0.19.3' >> requirements.txt
python setup.py sdist bdist_wheel
if [ $? -ne 0 ]; then
echo -e "${RED}[FAIL]${NONE} build paddlemix wheel failed !"
Expand Down

0 comments on commit f4def6d

Please sign in to comment.