From d17368f4883f3103275371c17c0ce3a780fc7eb7 Mon Sep 17 00:00:00 2001 From: Lei Yang Date: Fri, 1 Apr 2022 22:29:49 +0800 Subject: [PATCH] Bump version to v0.6.0 (#147) --- README.md | 4 ++++ README_CN.md | 4 ++++ mmhuman3d/version.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e444de47..370d6667 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,10 @@ https://user-images.githubusercontent.com/62529255/144362861-e794b404-c48f-4ebe- A suite of differentiale visualization tools for human parametric model rendering (including part segmentation, depth map and point clouds) and conventional 2D/3D keypoints are available. ## News +- 2022-04-01: MMHuman3D [v0.6.0](https://github.com/open-mmlab/mmhuman3d/releases/tag/v0.6.0) is released. Major updates include: + - Add HumanDataCache that requires 96% less RAM during training + - Refactor differentiable renderers and support UV map rendering + - Support slice/concat operations for HumanData - 2022-02-11: MMHuman3D [v0.5.0](https://github.com/open-mmlab/mmhuman3d/releases/tag/v0.5.0) is released. Major updates include: - Support new data structure SMC for new dataset HuMMan, which will soon be released - Support for multi-GPU training/testing without slurm diff --git a/README_CN.md b/README_CN.md index b968136b..c1570cec 100644 --- a/README_CN.md +++ b/README_CN.md @@ -42,6 +42,10 @@ https://user-images.githubusercontent.com/62529255/144362861-e794b404-c48f-4ebe- 一整套可微的可视化工具支持人体参数化模型的渲染(包括部分分割,深度图以及点云)和传统 2D/3D 关键点的可视化。 ## 最新进展 +- 2022-04-01: MMHuman3D [v0.6.0](https://github.com/open-mmlab/mmhuman3d/releases/tag/v0.6.0) 已经发布. 主要更新包括: + - 增加HumanDataCache,大幅削减(96%)训练时内存占用 + - 重构可微渲染器并支持UV map渲染 + - HumanData支持slice/concat操作 - 2022-02-11: MMHuman3D [v0.5.0](https://github.com/open-mmlab/mmhuman3d/releases/tag/v0.5.0) 已经发布. 主要更新包括: - 支持新的数据结构SMC以及即将发布的新数据集HuMMan - 支持在非slurm环境下的多GPU训练/测试 diff --git a/mmhuman3d/version.py b/mmhuman3d/version.py index 59c44b14..b4abbe9f 100644 --- a/mmhuman3d/version.py +++ b/mmhuman3d/version.py @@ -1,6 +1,6 @@ # Copyright (c) Open-MMLab. All rights reserved. -__version__ = '0.5.0' +__version__ = '0.6.0' def parse_version_info(version_str):