RuntimeError: expected scalar type Double but found Float
可以看到是输入数据(points)与模型权重的数据类型之间的冲突。1、尝试将输入数据改为Double类型一般的Tensor数据类型转化方法:在Tensor数据后加long(),int(),double(),float(),byte()等函数就能将Tensor的类型进行转换使用torch.type()函数,data为Tensor数据类型,data.type()给出data的类型,如果使用data.t