将Serie对象转换为Tensor对象
时间: 2023-05-17 13:05:51 浏览: 351
serie streaming cc-crx插件
可以使用PyTorch中的torch.Tensor()函数将Serie对象转换为Tensor对象。具体代码如下:
import torch
from pandas import Series
# 创建一个Serie对象
s = Series([1, 2, 3, 4, 5])
# 将Serie对象转换为Tensor对象
t = torch.Tensor(s.values)
print(t)
输出结果为:
tensor([1., 2., 3., 4., 5.])
阅读全文