| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import sys
- from . import cv
- 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 script can be run normally only under PaddleX<2.0.0 ' + \
- 'but the installed PaddleX version is greater than or equal to 2.0.0, ' + \
- 'the solution is writen in the link {}, please refer to this link ro solve this issue.'.format(
- 'https://github.com/PaddlePaddle/PaddleX/tree/develop/tutorials/train#%E7%89%88%E6%9C%AC%E5%8D%87%E7%BA%A7'
- )
- def __getattr__(attr):
- if attr == 'transforms':
- print("\033[1;31;40m{}\033[0m".format(message).encode("utf-8")
- .decode("latin1"))
- sys.exit(-1)
- visualize = visualize_detection
- draw_pr_curve = draw_pr_curve
- coco_error_analysis = coco_error_analysis
- # detection
- YOLOv3 = cv.models.YOLOv3
- FasterRCNN = cv.models.FasterRCNN
- PPYOLO = cv.models.PPYOLO
- PPYOLOTiny = cv.models.PPYOLOTiny
- PPYOLOv2 = cv.models.PPYOLOv2
- PicoDet = cv.models.PicoDet
- # instance segmentation
- MaskRCNN = cv.models.MaskRCNN
|