|
@@ -15,6 +15,7 @@
|
|
|
import sys
|
|
import sys
|
|
|
from . import cv
|
|
from . import cv
|
|
|
from .cv.models.utils.visualize import visualize_detection, draw_pr_curve
|
|
from .cv.models.utils.visualize import visualize_detection, draw_pr_curve
|
|
|
|
|
+from .cv.models.utils.det_metrics.coco_utils import coco_error_analysis
|
|
|
|
|
|
|
|
message = 'Your running script needs PaddleX<2.0.0, please refer to {} to solve this issue.'.format(
|
|
message = 'Your running script needs PaddleX<2.0.0, please refer to {} to solve this issue.'.format(
|
|
|
'https://github.com/PaddlePaddle/PaddleX/tree/release/2.0-rc/tutorials/train#%E7%89%88%E6%9C%AC%E5%8D%87%E7%BA%A7'
|
|
'https://github.com/PaddlePaddle/PaddleX/tree/release/2.0-rc/tutorials/train#%E7%89%88%E6%9C%AC%E5%8D%87%E7%BA%A7'
|
|
@@ -31,6 +32,7 @@ def __getattr__(attr):
|
|
|
|
|
|
|
|
visualize = visualize_detection
|
|
visualize = visualize_detection
|
|
|
draw_pr_curve = draw_pr_curve
|
|
draw_pr_curve = draw_pr_curve
|
|
|
|
|
+coco_error_analysis = coco_error_analysis
|
|
|
|
|
|
|
|
# detection
|
|
# detection
|
|
|
YOLOv3 = cv.models.YOLOv3
|
|
YOLOv3 = cv.models.YOLOv3
|