Junxiang Zeng

Results 4 issues of Junxiang Zeng

## 描述问题 既往用paddleX-GUI训练导出的模型如何转换为当前paddleDetection的模型导出格式? ![image](https://user-images.githubusercontent.com/112910942/231357541-5f970a09-589a-4938-9304-98fed78fc7c8.png)

## 描述问题 在GUI训练好的模型,导出后试图加密,但在模型转化格式的时候出现了报错。 ![image](https://user-images.githubusercontent.com/112910942/228412869-430c551f-8a57-4e82-bdbc-92aa29c8c053.png) #请提供您出现的报错信息及相关log ![报错](https://user-images.githubusercontent.com/112910942/228413022-a5d01464-e19f-4987-a402-501f85fb22fb.png) ![image](https://user-images.githubusercontent.com/112910942/228414613-281be367-a837-4e67-aab6-2281d65d4c29.png) ## 环境 1. 请提供您使用的PaddlePaddle和PaddleX的版本号 PaddlePaddle 2.4.1 PaddleX 2.1.0 2. 请提供您使用的操作系统信息,如Linux/Windows/MacOS Windows 10 3. 请问您使用的Python版本是? Python 3.7.16 4. 请问您使用的CUDA/cuDNN的版本号是? CUDA 11.2 CUDNN 8.1.0

### import paddleclas出现报错,如下 **from .ppcls.arch import backbone ImportError: attempted relative import with no known parent package** 然后将paddleclas.py文件改为绝对引用,如下: .......... import sys sys.path.append('D:/PaddleClass') import cv2 import numpy as np from tqdm import...

Traceback (most recent call last): File "D:\jupyter\pythonProject\yolov5-gradcam-master\main.py", line 124, in main(args.img_path) File "D:\jupyter\pythonProject\yolov5-gradcam-master\main.py", line 67, in main saliency_method = YOLOV5GradCAM(model=model, layer_name=args.target_layer, img_size=input_size) File "D:\jupyter\pythonProject\yolov5-gradcam-master\models\gradcam.py", line 44, in __init__ self.model(torch.zeros(1, 3,...