TypeError: can‘t convert cuda:0 device type tensor to numpy.

Traceback (most recent call last):
  File "train.py", line 511, in <module>
    train(hyp, tb_writer, opt, device)
  File "train.py", line 368, in train
    save_dir=log_dir)
  File "../yolov5-master/test.py", line 176, in test
    plot_images(img, output_to_target(output, width, height), paths, str(f), names)  # predictions
  File "../yolov5-master/utils/utils.py", line 914, in output_to_target
    return np.array(targets)
  File "../lib/python3.7/site-packages/torch/tensor.py", line 492, in __array__
    return self.numpy()
TypeError: can't convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.

Traceback (most recent call last):
  File "train.py", line 511, in <module>
    train(hyp, tb_writer, opt, device)
  File "train.py", line 368, in train
    save_dir=log_dir)
  File "../yolov5-master/test.py", line 176, in test
    plot_images(img, output_to_target(output, width, height), paths, str(f), names)  # predictions
  File "../yolov5-master/utils/utils.py", line 914, in output_to_target
    return np.array(targets)
  File "../miniconda3/envs/yolov5/lib/python3.7/site-packages/torch/tensor.py", line 492, in __array__
    return self.numpy()
TypeError: can't convert cuda:0 device type tensor to numpy. Use Tensor.cpu() to copy the tensor to host memory first.

解决老版本yolo v5 test时报上述错误:

修改/yolov5-master/utils/utils.py

第895行: output_to_target(output, width, height) 函数中的元素o,将其转到cpu上: o = o.cpu().numpy()

 output是GPU上的list ,list元素的类型是tensor,需要先转为cpu上的numpy()类型

def output_to_target(output, width, height):
    # Convert model output to target format [batch_id, class_id, x, y, w, h, conf]
    if isinstance(output, torch.Tensor):
        output = output.cpu().numpy()
    
    targets = []
    for i, o in enumerate(output):
        if o is not None:
            # output是gpu上的list ,list元素的类型是tensor,需要先转为cpu删的numpy()类型
            o = o.cpu().numpy()
            for pred in o:
                box = pred[:4]
                w = (box[2] - box[0]) / width
                h = (box[3] - box[1]) / height
                x = box[0] / width + w / 2
                y = box[1] / height + h / 2
                conf = pred[4]
                cls = int(pred[5])

                targets.append([i, cls, x, y, w, h, conf])

    return np.array(targets)

  • 5
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值