From c94f647ec62cd6e20585ea0bba6ce0b16ba1f50c Mon Sep 17 00:00:00 2001 From: yhq Date: Tue, 17 Jan 2023 14:20:29 +0800 Subject: [PATCH] update to 0.9.0 (#270) --- README.md | 6 ++++++ README_zh-CN.md | 8 +++++++- docs/source/change_log.md | 21 +++++++++++++++++++++ easycv/version.py | 4 ++-- 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 81f35b2e..6eee1180 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,12 @@ EasyCV is an all-in-one computer vision toolbox based on PyTorch, mainly focuses ## What's New +[🔥 2023.01.17] + +* 17/01/2023 EasyCV v0.9.0 was released. +- Support Single-lens MOT +- Support video recognition (X3D, SWIN-video) + [🔥 2022.12.02] * 02/12/2022 EasyCV v0.8.0 was released. diff --git a/README_zh-CN.md b/README_zh-CN.md index e52323c8..452fd3fe 100644 --- a/README_zh-CN.md +++ b/README_zh-CN.md @@ -45,9 +45,15 @@ EasyCV是一个涵盖多个领域的基于Pytorch的计算机视觉工具箱, ## 最新进展 +[🔥 2023.01.17] + +* 17/01/2023 EasyCV v0.9.0 was released. +- 支持单镜头多目标跟踪。 +- 增加视频识别算法 (X3D, SWIN-video) + [🔥 2022.12.02] -* 02/12/2022 EasyCV v0.8.0 was released. +* 02/12/2022 EasyCV v0.8.0 版本发布. - bevformer-base NDS在nuscenes val上提升0.8,训练速度提升10%,推理速度提升40%。 - 支持Objects365预训练,加入DINO++模型在200M模型规模下可达到63.4mAP的精度(同等规模下精度最佳)。 diff --git a/docs/source/change_log.md b/docs/source/change_log.md index ea929d0e..5f0d53de 100644 --- a/docs/source/change_log.md +++ b/docs/source/change_log.md @@ -1,3 +1,24 @@ +# v 0.9.0 (17/01/2023) + +## Highlights +- Support Single-lens MOT ([#258](https://github.com/alibaba/EasyCV/pull/258)) +- Support video recognition (X3D, SWIN-video) ([#256](https://github.com/alibaba/EasyCV/pull/256)) + +## New Features +- Add inception config and voc config for FCN and UperNet ([#261](https://github.com/alibaba/EasyCV/pull/261)) +- Add inference time under V100 for the benchmark of deitiii and hydra attention ([#251](https://github.com/alibaba/EasyCV/pull/251)) +- Add bev-blancehybrid benchmark ([#249](https://github.com/alibaba/EasyCV/pull/249)) + +## Improvements +- Optimize data source apis ([#254](https://github.com/alibaba/EasyCV/pull/254)) +- Update predict.py to support input model directory ([#252](https://github.com/alibaba/EasyCV/pull/252)) + + +## Bug Fixes +- Fix MAE arg error after timm upgrade ([#255](https://github.com/alibaba/EasyCV/pull/255)) +- Fix export SSL models bug, avoid loading default pretrained backbone model ([#257](https://github.com/alibaba/EasyCV/pull/257)) +- Fix bug can't find config files while easycv is installed ([#253](https://github.com/alibaba/EasyCV/pull/253)) + # v 0.8.0 (5/12/2022) ## Highlights diff --git a/easycv/version.py b/easycv/version.py index ee49d7e4..69f1e2ac 100644 --- a/easycv/version.py +++ b/easycv/version.py @@ -2,5 +2,5 @@ # GENERATED VERSION FILE # TIME: Thu Nov 5 14:17:50 2020 -__version__ = '0.8.0' -short_version = '0.8.0' +__version__ = '0.9.0' +short_version = '0.9.0'