首頁>技術>

飛槳(PaddlePaddle)是集深度學習核心框架、工具元件和服務平臺為一體的技術先進、功能完備的開源深度學習平臺,已被中國企業廣泛使用,深度契合企業應用需求,擁有活躍的開發者社群生態。提供豐富的官方支援模型集合,並推出全型別的高效能部署和整合方案供開發者使用。

安裝pycharm配置python

最好使用python3.7,高版本可能會有問題

配置python遠端倉庫最好升級pip,低版本可能無法下載相關package安裝paddlepaddle和paddlehub包測試執行一個模型測試
import paddlehub as hubimport cv2# Press the green button in the gutter to run the script.if __name__ == '__main__':    module = hub.Module(name="pyramidbox_lite_mobile_mask")    test_img_path = "C:/Users/tangxinmao/Pictures/Camera Roll/mask.png"    # set input dict    input_dict = {"data": [cv2.imread(test_img_path)]}    results = module.face_detection(data=input_dict)    print(results)
執行效果

17
最新評論
  • BSA-TRITC(10mg/ml) TRITC-BSA 牛血清白蛋白改性標記羅丹明
  • Java中Lambda表示式簡化程式碼的例子