如何像Torch
Numpy
一样切片m[begin:end, :]
中的张量行?
我想要运行的代码示例:
require 'torch'
m = torch.Tensor(10, 2):zero()
a = torch.Tensor(5, 2):fill(1)
m({{1,5}, {}}) = a -- Error at this line
m
1 1
1 1
1 1
1 1
1 1
0 0
0 0
0 0
0 0
0 0
[torch.DoubleTensor of size 10x2]
答案 0 :(得分:1)
我必须使用括号m[]
而不是括号
其余的代码很好。