diff --git a/README_cn.md b/README_cn.md index 46a37babec7f07ba3e2b70fd7e5256b253bae0ef..01903542500cba47ee9fc487ff0bd0613a413d1e 100644 --- a/README_cn.md +++ b/README_cn.md @@ -219,7 +219,8 @@ PaddleDetection模块化地实现了多种主流目标检测算法,提供了 - [PP-YOLO模型](configs/ppyolo/README_cn.md) - [676类目标检测](static/docs/featured_model/LARGE_SCALE_DET_MODEL.md) - [两阶段实用模型PSS-Det](configs/rcnn_enhance/README.md) - - [TTFNet](configs/ttfnet/README.md) + - [增强版Anchor Free模型TTFNet](configs/ttfnet/README.md) + - [半监督知识蒸馏预训练检测模型](docs/feature_models/SSLD_PRETRAINED_MODEL.md) - 通用实例分割 - [SOLOv2](configs/solov2/README.md) - 旋转框检测 diff --git a/README_en.md b/README_en.md index 301bfa323497bd2a206e7d901e6aeef2e9d4e999..418ea6ec97e9d7d4982f4d5b59a620aef03aa8b6 100644 --- a/README_en.md +++ b/README_en.md @@ -232,7 +232,8 @@ The relationship between COCO mAP and FPS on Tesla V100 of representative models - [PP-YOLO](configs/ppyolo/README.md) - [676 classes of object detection](static/docs/featured_model/LARGE_SCALE_DET_MODEL.md) - [Two-stage practical PSS-Det](configs/rcnn_enhance/README.md) - - [TTFNet](configs/ttfnet/README.md) + - [Enhanced Anchor Free model--TTFNet](configs/ttfnet/README.md) + - [SSLD pretrained models](docs/feature_models/SSLD_PRETRAINED_MODEL_en.md) - Universal instance segmentation - [SOLOv2](configs/solov2/README.md) - Rotation object detection diff --git a/configs/fcos/README.md b/configs/fcos/README.md index 2ba0893d8b81e50f1b4fb4259c62d2df9b31c712..a5b6ebbdf15842620f2cb500df06d57968ee22d0 100644 --- a/configs/fcos/README.md +++ b/configs/fcos/README.md @@ -10,12 +10,11 @@ FCOS (Fully Convolutional One-Stage Object Detection) is a fast anchor-free obje ## Model Zoo -| 骨架网络 | 网络类型 | 每张GPU图片个数 | 学习率策略 |推理时间(fps) | Box AP | 下载 | 配置文件 | +| Backbone | Model | images/GPU | lr schedule |FPS | Box AP | download | config | | :-------------- | :------------- | :-----: | :-----: | :------------: | :-----: | :-----------------------------------------------------: | :-----: | -| ResNet50-FPN | FCOS | 2 | 1x | ---- | 39.6 | [下载链接](https://paddledet.bj.bcebos.com/models/fcos_r50_fpn_1x_coco.pdparams) | [配置文件](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_r50_fpn_1x_coco.yml) | -| ResNet50-FPN | FCOS+DCN | 2 | 1x | ---- | 44.3 | [下载链接](https://paddledet.bj.bcebos.com/models/fcos_dcn_r50_fpn_1x_coco.pdparams) | [配置文件](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_dcn_r50_fpn_1x_coco.yml) | -| ResNet50-FPN | FCOS+multiscale_train | 2 | 2x | ---- | 41.8 | [下载链接](https://paddledet.bj.bcebos.com/models/fcos_r50_fpn_multiscale_2x_coco.pdparams) | [配置文件](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_r50_fpn_multiscale_2x_coco.yml) | - +| ResNet50-FPN | FCOS | 2 | 1x | ---- | 39.6 | [download](https://paddledet.bj.bcebos.com/models/fcos_r50_fpn_1x_coco.pdparams) | [config](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_r50_fpn_1x_coco.yml) | +| ResNet50-FPN | FCOS+DCN | 2 | 1x | ---- | 44.3 | [download](https://paddledet.bj.bcebos.com/models/fcos_dcn_r50_fpn_1x_coco.pdparams) | [config](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_dcn_r50_fpn_1x_coco.yml) | +| ResNet50-FPN | FCOS+multiscale_train | 2 | 2x | ---- | 41.8 | [download](https://paddledet.bj.bcebos.com/models/fcos_r50_fpn_multiscale_2x_coco.pdparams) | [config](https://github.com/PaddlePaddle/PaddleDetection/tree/develop/configs/fcos/fcos_r50_fpn_multiscale_2x_coco.yml) | **Notes:** - FCOS is trained on COCO train2017 dataset and evaluated on val2017 results of `mAP(IoU=0.5:0.95)`. diff --git a/docs/tutorials/INSTALL.md b/docs/tutorials/INSTALL.md index 2dbe48470bb918902b4e3a6dfa23e8c327324c2a..c023c25836bbaad03ab59064331435012d714671 100644 --- a/docs/tutorials/INSTALL.md +++ b/docs/tutorials/INSTALL.md @@ -18,6 +18,17 @@ For general information about PaddleDetection, please see [README.md](https://gi - cuDNN >= 7.6 +Dependency of PaddleDetection and PaddlePaddle: + +| PaddleDetection version | PaddlePaddle version | tips | +| :----------------: | :---------------: | :-------: | +| release/2.0 | >= 2.0.1 | Dygraph mode is set as default | +| release/2.0-rc | >= 2.0.1 | -- | +| release/0.5 | >= 1.8.4 | Cascade R-CNN and SOLOv2 depends on 2.0.0.rc | +| release/0.4 | >= 1.8.4 | PP-YOLO depends on 1.8.4 | +| release/0.3 | >=1.7 | -- | + + ## Instruction ### 1. Install PaddlePaddle diff --git a/docs/tutorials/INSTALL_cn.md b/docs/tutorials/INSTALL_cn.md index 132a8064a78dfdd063d6f4a02f61c7703970b3d7..7cbdea15445ec3c51b3e27b9ebeda798e74e1ce8 100644 --- a/docs/tutorials/INSTALL_cn.md +++ b/docs/tutorials/INSTALL_cn.md @@ -14,6 +14,15 @@ - CUDA >= 9.0 - cuDNN >= 7.6 +PaddleDetection 依赖 PaddlePaddle 版本关系: + +| PaddleDetection版本 | PaddlePaddle版本 | 备注 | +| :------------------: | :---------------: | :-------: | +| release/2.0 | >= 2.0.1 | 默认使用动态图模式 | +| release/2.0-rc | >= 2.0.1 | -- | +| release/0.5 | >= 1.8.4 | 大部分模型>=1.8.4即可运行,Cascade R-CNN系列模型与SOLOv2依赖2.0.0.rc版本 | +| release/0.4 | >= 1.8.4 | PP-YOLO依赖1.8.4 | +| release/0.3 | >=1.7 | -- | ## 安装说明 diff --git a/tools/infer.py b/tools/infer.py index 4b38225ff65ddae9f56d3377bc0d98a908086c0f..d4f213ead51a73915787726662d4c0c13980d07b 100755 --- a/tools/infer.py +++ b/tools/infer.py @@ -68,7 +68,7 @@ def parse_args(): "--use_vdl", type=bool, default=False, - help="whether to record the data to VisualDL.") + help="Whether to record the data to VisualDL.") parser.add_argument( '--vdl_log_dir', type=str, @@ -78,7 +78,7 @@ def parse_args(): "--save_txt", type=bool, default=False, - help="whether to record the data to VisualDL.") + help="Whether to save inference result in txt.") args = parser.parse_args() return args