如果我有一个张量:
t1 = torch.Tensor(2, 2)
有没有办法将这些数据作为Lua表格?
答案 0 :(得分:22)
create a tensor from a table有一个专用的构造函数,但到目前为止还没有开箱即用的方法可以反过来转换。
当然,您可以手动执行 :
-- This assumes `t1` is a 2-dimensional tensor!
local t2 = {}
for i=1,t1:size(1) do
t2[i] = {}
for j=1,t1:size(2) do
t2[i][j] = t1[i][j]
end
end
-
更新:自commit 10f3323起,现在有一个专用的torch.totable(object)
转换器。