5次元テンソルで[batch, channel, frame, width, height]となっているのですが,
1番目のフレームの画像を取得するためには,どうしたら良いでしょうか?
>>> import torch >>> x = torch.empty(16,3,16,14,14) >>> in_b, in_c, in_f, in_x, in_y = x.shape >>> print(x[:,:,1,in_x,in_y].shape) Traceback (most recent call last): File "<stdin>", line 1, in <module> IndexError: index 14 is out of bounds for dimension 2 with size 14
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/05 08:02