为何本机实验口罩检测,系统提示找不到Module
Created by: lee83214
欢迎您反馈PaddleHub使用问题,非常感谢您对PaddleHub的贡献! 在留下您的问题时,辛苦您同步提供如下信息:
- 版本、环境信息 1)PaddleHub和PaddlePaddle版本: paddlehub 1.6.0 paddlepaddle 1.7.2 2)系统环境:请您描述系统类型,例如Windows10,python版本 Python 3.7.4 3)遇到的问题: 在本机实验(Jupyter note界面)口罩检测功能时,提示找不到Module 代码: import paddlehub as hub import cv2
#hub.Module?
module = hub.Module(name="pyramidbox_lite_mobile_mask")
test_img_path = "test.jpeg"
set input dict
input_dict = {"data": [cv2.imread(test_img_path)]} results = module.face_detection(data=input_dict) print(results)
报错提示:
AttributeError Traceback (most recent call last) in 4 #hub.Module? 5 ----> 6 module = hub.Module(name="pyramidbox_lite_mobile_mask") 7 8 test_img_path = "test.jpeg"
AttributeError: module 'paddlehub' has no attribute 'Module'