7.0 KiB
Changelog
v0.2.0(1/12/2022)
Highlights
- Support YOLOv7 P5 and P6 model
- Support YOLOv6 ML model
- Support Grad-Based CAM and Grad-Free CAM
- Support large image inference based on sahi
- Add easydeploy project under the projects folder
- Add custom dataset guide
New Features
browse_dataset.py
script supports visualization of original image, data augmentation and intermediate results (#304)- Add flag to output labelme label file in
image_demo.py
(#288, #314) - Add
labelme2coco
script (#308, #313) - Add split COCO dataset script (#311)
- Add two examples of backbone replacement in
how-to.md
and updateplugin.md
(#291) - Add
contributing.md
andcode_style.md
(#322) - Add docs about how to use mim to run scripts across libraries (#321)
- Support
YOLOv5
deployment at RV1126 device (#262)
Bug Fixes
- Fix MixUp padding error (#319)
- Fix scale factor order error of
LetterResize
andYOLOv5KeepRatioResize
(#305) - Fix training errors of
YOLOX Nano
model (#285) - Fix
RTMDet
deploy error (#287) - Fix int8 deploy config (#315)
- Fix
make_stage_plugins
doc inbasebackbone
(#296) - Enable switch to deploy when create pytorch model in deployment (#324)
- Fix some errors in
RTMDet
model graph (#317)
Improvements
- Add option of json output in
test.py
(#316) - Add area condition in
extract_subcoco.py
script (#286) - Deployment doc translation (#289)
- Add YOLOv6 description overview doc (#252)
- Improve
config.md
(#297, #303) 6Add mosaic9 graph in docstring (#307) - Improve
browse_coco_json.py
script args (#309) - Refactor some functions in
dataset_analysis.py
to be more general (#294)
Contributors
A total of 14 developers contributed to this release.
Thank @fcakyon, @matrixgame2018, @MambaWong, @imAzhou, @triple-Mu, @RangeKing, @PeterH0323, @xin-li-67, @kitecats, @hanrui1sensetime, @AllentDan, @Zheng-LinXiao, @hhaAndroid, @wanghonglie
v0.1.3(10/11/2022)
New Features
- Support CBAM plug-in and provide plug-in documentation (#246)
- Add YOLOv5 P6 model structure diagram and related descriptions (#273)
Bug Fixes
- Fix training failure when saving best weights based on mmengine 0.3.1
- Fix
add_dump_metric
error based on mmdet 3.0.0rc3 (#253) - Fix backbone does not support
init_cfg
issue (#272) - Change typing import method based on mmdet 3.0.0rc3 (#261)
Improvements
Contributors
A total of 10 developers contributed to this release.
Thank @kitecats, @triple-Mu, @RangeKing, @PeterH0323, @Zheng-LinXiao, @tkhe, @weikai520, @zytx121, @wanghonglie, @hhaAndroid
v0.1.2(3/11/2022)
Highlights
- Support YOLOv5/YOLOv6/YOLOX/RTMDet deployments for ONNXRuntime and TensorRT
- Support YOLOv6 s/t/n model training
- YOLOv5 supports P6 model training which can input 1280-scale images
- YOLOv5 supports VOC dataset training
- Support PPYOLOE and YOLOv7 model inference and official weight conversion
- Add YOLOv5 replacement backbone tutorial in How-to documentation
New Features
- Add
optimize_anchors
script (#175) - Add
extract_subcoco
script (#186) - Add
yolo2coco
conversion script (#161) - Add
dataset_analysis
script (#172) - Remove Albu version restrictions (#187)
Bug Fixes
- Fix the problem that
cfg.resume
does not work when set (#221) - Fix the problem of not showing bbox in feature map visualization script (#204)
- uUpdate the metafile of RTMDet (#188)
- Fix a visualization error in
test_pipeline
(#166) - Update badges (#140)
Improvements
- Optimize Readthedoc display page (#209)
- Add docstring for module structure diagram for base model (#196)
- Support for not including any instance logic in LoadAnnotations (#161)
- Update
image_demo
script to support folder and url paths (#128) - Update pre-commit hook (#129)
Documentation
- Translate
yolov5_description.md
,yolov5_tutorial.md
andvisualization.md
into English (#138, #198, #206) - Add deployment-related Chinese documentation (#220)
- Update
config.md
,faq.md
andpull_request_template.md
(#190, #191, #200) - Update the
article
page (#133)
Contributors
A total of 14 developers contributed to this release.
Thank @imAzhou, @triple-Mu, @RangeKing, @PeterH0323, @xin-li-67, @Nioolek, @kitecats, @Bin-ze, @JiayuXu0, @cydiachen, @zhiqwang, @Zheng-LinXiao, @hhaAndroid, @wanghonglie
v0.1.1(29/9/2022)
Based on MMDetection's RTMDet high precision and low latency object detection algorithm, we have also released RTMDet and provided a Chinese document on the principle and implementation of RTMDet.
Highlights
Bug Fixes
- Fix some documentation errors (#66, #72, #76, #83, #86)
- Fix checkpoints link error (#63)
- Fix the bug that the output of
LetterResize
does not meet the expectation when usingimscale
(#105)
Improvements
- Reducing the size of docker images (#67)
- Simplifying
Compose
Logic inBaseMixImageTransform
(#71) - Supports dump results in
test.py
(#84)
Contributors
A total of 13 developers contributed to this release.
Thank @wanghonglie, @hhaAndroid, @yang-0201, @PeterH0323, @RangeKing, @satuoqaq, @Zheng-LinXiao, @xin-li-67, @suibe-qingtian, @MambaWong, @MichaelCai0912, @rimoire, @Nioolek
v0.1.0(21/9/2022)
We have released MMYOLO open source library, which is based on MMEngine, MMCV 2.x and MMDetection 3.x libraries. At present, the object detection has been realized, and it will be expanded to multi-task in the future.
Highlights
- Support YOLOv5/YOLOX training, support YOLOv6 inference. Deployment will be supported soon.
- Refactored YOLOX from MMDetection to accelerate training and inference.
- Detailed introduction and advanced tutorials are provided, see the English tutorial.