web-dev-qa-db-ja.com

Pycharm / Pytorch-「テンソル」は呼び出せません

Pytorch(1.0)テンソルを作成する場合:

import torch
W = torch.tensor(([1.0]))

Pycharm(2018.3.1)は私に次の警告を出します:

'tensor' is not callable less... (Ctrl+F1) 
Inspection info: This inspection highlights attempts to call objects which are not callable, like, for example, tuples

私のコードは正常に動作します(tensor()は呼び出し可能です)が、この警告を理解して取り除きたいのですが。

6
u2gilles

これは彼らにとって既知の問題でした 。モデレーターは次のように返信しました:

次のリリースでこれを修正します。 https://github.com/pytorch/pytorch/issues/7318 で追跡されています

ただし、報告された問題はPyTorch v0.4.1

1
Andrew Naguib