Pytorch 基本統計量 900ブロックチェーン 2023年04月05日 0 平均値などの基本統計量を、Pytorchで。1. サンプルimport torch#-- floatで指定x = torch.tensor([[1.0,2.0,3.0]])#-- 平均値print(torch.mean(x).item())#-- 合計値print(torch.sum(x).item())#-- 最大値print(torch.max(x).item())#-- 最小値print(torch.min(x).item())2.実行結果2.06.03.01.0 PR