一个模型结果形式如下,提取出来
第一种方式
pre_re = mymodel(x)
pre_re : tensor([ 预测值的结果 ],device='cuda:0,' ,grad_fn=<AddmBackward>)
pre_re.detach()的结果仍然时Tensor类型,若想使用需要使用numpy()
detach后,pre_re : tensor([ 预测值的结果 ],device='cuda:0,')
经过cpu()后,pre_re.detach().cpu()结果:pre_re : tensor([ 预测值的结果 ],)
can't convert CUDA tensor to numpy,use Tensor.cpu() to copy the tensor to host memory first.
结果得到想要的数据[ 预测值的结果 ]
总的过程
re_pre.detach().cpu().numpy()
第二种方式
pre_re = mymodel(x)
pre_re的形式 : tensor([ 预测值的结果 ],device='cuda:0,' ,grad_fn=<AddmBackward>)
使用pre_re.data.cpu().numpu()
pre_re.data的功能和detach()一样
|