作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将火炬张量转换为 Pandas 数据帧,但使用 pd.DataFrame
我得到了一个充满张量而不是数值的数据框。
import torch
import pandas as pd
x = torch.rand(4,4)
px = pd.DataFrame(x)
px
时得到的结果在变量资源管理器中:
0 1 2 3
tensor(0.3880) tensor(0.4598) tensor(0.4239) tensor(0.7376)
tensor(0.4174) tensor(0.9581) tensor(0.0987) tensor(0.6359)
tensor(0.6199) tensor(0.8235) tensor(0.9947) tensor(0.9679)
tensor(0.7164) tensor(0.9270) tensor(0.7853) tensor(0.6921)
最佳答案
我通过首先将 torch 转换为 numpy 找到了一种可能的方法:
import torch
import pandas as pd
x = torch.rand(4,4)
px = pd.DataFrame(x.numpy())
关于python - 如何将 torch 张量转换为 Pandas 数据帧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57942487/
我是一名优秀的程序员,十分优秀!