WildCamel
WildCamel
请问是否有某种方法屏蔽JSON异常?一个一个改太多了,官方的库是怎么编译通过的?
### Is there an existing issue for the same bug? - [X] I have checked the existing issues. ### Branch name main ### Commit ID 1621313c0f6dcd82fb67d4d00e0f9552c814361a ### Other environment information...
## 描述问题 我想最终在昇腾310P上推理PP-YOLOE-R-L模型。 第一步,我现在已经使用paddle2onnx插件成功将它转换成了onnx模型,并创建了产线yaml文件: ``` pipeline_name: rotated_object_detection SubModules: RotatedObjectDetection: module_name: rotated_object_detection model_name: PP-YOLOE-R-L model_dir: 'test_yoloe_r' batch_size: 1 threshold: 0.5 ``` 第二步,推理失败: `paddlex --pipeline test_rotated_object_detection.yaml --input dataset/rdet_dota_examples/images/P0047__1.0__0___0.png --use_hpip --hpi_config '{"backend": "onnxruntime"}'`...
## 描述问题 我当前的系统是ubuntu 20.04,安装的环境: CUDA 12.9 CUDNN为9.10 python 3.12 paddlepaddle-gpu 3.2.0 paddlex 3.2.1 onnxruntime-gpu 1.20.2 ## Python调用方式 ` # 初始化一次 pipeline = create_pipeline(pipeline="OCR", use_hpip=True, device=device) # 循环调用: output = self.pipeline.predict(...