pPose_nms.py文件中
ori_bboxes = bboxes_to_tensor.clone()报错:AttributeError: 'numpy.ndarray' object has no attribute 'clone'修改:bboxes_to_tensor = torch.from_numpy(bboxes)
ori_bboxes = bboxes_to_tensor.clone()