PyTorchの tensor オブジェクトxで、x.log() とすると、同じtensor で何かが出力されます。
これは何でしょうか。
python
1import torch 2 3x = torch.tensor([[0.4502, 0.5498], 4 [0.4462, 0.5538], 5 [0.4427, 0.5573], 6 [0.4467, 0.5533]]) 7print(x.log())
tensor([[-0.7981, -0.5982],
[-0.8070, -0.5910],
[-0.8149, -0.5847],
[-0.8059, -0.5919]])
回答1件
あなたの回答
tips
プレビュー