pytorch框架下定义了哪些数据类型
时间: 2023-11-16 12:21:20 浏览: 71
PyTorch基本数据类型(一)
PyTorch框架下定义了以下数据类型:
- FloatTensor:32位浮点数
- DoubleTensor:64位浮点数
- HalfTensor:16位浮点数
- CharTensor:8位整数
- ShortTensor:16位整数
- IntTensor:32位整数
- LongTensor:64位整数
- BoolTensor:布尔类型
- ByteTensor:8位无符号整数
阅读全文