LIBTORCH C++

2022/1/25 20:04:26

本文主要是介绍LIBTORCH C++,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1:Ubuntu18.04 配置 LibTorch_不忘初心~-CSDN博客_ubuntu安装libtorch

2:You need C++14 to compile PyTorch

Ubuntu下C++调用pytorch训练好模型--利用libtorch - 灰信网(软件开发博客聚合)

3:Input type (torch.FloatTensor) and weight type (torch.cuda.FloatTensor) should be the same

错误内容大概就是指输入类型是CPU(torch.FloatTensor),而参数类型是GPU(torch.cuda.FloatTensor)。
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
inputs.to(device)
或者
 tensor_image = tensor_image.unsqueeze(0).cuda();



这篇关于LIBTORCH C++的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程