update change_log.md (#109)

* update change_log.md and README
pull/117/head
Cathy0908 2022-07-01 18:41:19 +08:00 committed by GitHub
parent f7f4088152
commit 6c7f7ad12e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 0 deletions

View File

@ -84,6 +84,14 @@ Please refer to [data_hub.md](https://github.com/alibaba/EasyCV/blob/master/docs
## ChangeLog
* 23/06/2022 EasyCV v0.4.0 was released.
* Add semantic segmentation modules, support FCN algorithm
* Expand classification model zoo
* Support export model with [blade](https://help.aliyun.com/document_detail/205134.html) for yolox
* Support ViTDet algorithm
* Add sailfish for extensible fully sharded data parallel training
* Support run with [mmdetection](https://github.com/open-mmlab/mmdetection) models
* 31/04/2022 EasyCV v0.3.0 was released.
* Update moby pretrained model to deit small
* Add mae vit-large benchmark and pretrained models

View File

@ -70,6 +70,19 @@ EasyCV是一个涵盖多个领域的基于Pytorch的计算机视觉工具箱
## 变更日志
* 23/06/2022 EasyCV v0.4.0 版本发布。
* 增加语义分割模块, 支持FCN算法
* 扩充分类算法 model zoo
* Yolox支持导出 [blade](https://help.aliyun.com/document_detail/205134.html) 模型
* 支持 ViTDet 检测算法
* 支持 sailfish 数据并行训练
* 支持运行 [mmdetection](https://github.com/open-mmlab/mmdetection) 中的模型
* 31/04/2022 EasyCV v0.3.0 版本发布。
* 增加 moby deit-small 预训练模型
* 增加 mae vit-large benchmark和预训练模型
* 支持 tensorboard和wandb 的图像可视化
* 2022/04/07 EasyCV v0.2.2 版本发布。
更多详细变更日志请参考[变更记录](docs/source/change_log.md)。

View File

@ -43,3 +43,28 @@ EasyCV support multi-gpu and multi worker training. EasyCV use DALI to accelerat
- Update model zoo link ([#8](https://github.com/alibaba/EasyCV/pull/8))
- Support readthedocs ([#29](https://github.com/alibaba/EasyCV/pull/29))
- refine autorelease gitworkflow ([#13](https://github.com/alibaba/EasyCV/pull/13))
# v 0.4.0 (23/06/2022)
## Highlights
- Add **semantic segmentation** modules, support FCN algorithm ([#71](https://github.com/alibaba/EasyCV/pull/71))
- Expand classification model zoo ([#55](https://github.com/alibaba/EasyCV/pull/55))
- Support export model with **[blade](https://help.aliyun.com/document_detail/205134.html)** for yolox ([#66](https://github.com/alibaba/EasyCV/pull/66))
- Support **ViTDet** algorithm ([#35](https://github.com/alibaba/EasyCV/pull/35))
- Add sailfish for extensible fully sharded data parallel training ([#97](https://github.com/alibaba/EasyCV/pull/97))
- Support run with [mmdetection](https://github.com/open-mmlab/mmdetection) models ([#25](https://github.com/alibaba/EasyCV/pull/25))
## New Features
- Set multiprocess env for speedup ([#77](https://github.com/alibaba/EasyCV/pull/77))
- Add data hub, summarized various datasets in different fields ([#70](https://github.com/alibaba/EasyCV/pull/70))
## Bug Fixes
- Fix the inaccurate accuracy caused by missing the `groundtruth_is_crowd` field in CocoMaskEvaluator ([#61](https://github.com/alibaba/EasyCV/pull/61))
- Unified the usage of `pretrained` parameter and fix load bugs([#79](https://github.com/alibaba/EasyCV/pull/79)) ([#85](https://github.com/alibaba/EasyCV/pull/85)) ([#95](https://github.com/alibaba/EasyCV/pull/95))
## Improvements
- Update MAE pretrained models and benchmark ([#50](https://github.com/alibaba/EasyCV/pull/50))
- Add detection benchmark for SwAV and MoCo-v2 ([#58](https://github.com/alibaba/EasyCV/pull/58))
- Add moby swin-tiny pretrained model and benchmark ([#72](https://github.com/alibaba/EasyCV/pull/72))
- Update prepare_data.md, add more details ([#69](https://github.com/alibaba/EasyCV/pull/69))
- Optimize quantize code and support to export MNN model ([#44](https://github.com/alibaba/EasyCV/pull/44))