|
@@ -12,9 +12,23 @@
|
|
|
# See the License for the specific language governing permissions and
|
|
# See the License for the specific language governing permissions and
|
|
|
# limitations under the License.
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
|
|
+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
|
|
|
|
|
|
|
|
|
|
+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'
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+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
|
|
visualize = visualize_detection
|
|
|
draw_pr_curve = draw_pr_curve
|
|
draw_pr_curve = draw_pr_curve
|
|
|
|
|
|