PyTorch | torch.full()使用方法 | torch.full()如何使用? torch.full()例子說明 | 通過torch.full建立全相同的張量
阿新 • • 發佈:2021-01-16
技術標籤:PyTorch--由入門到精通
公眾號【計算機視覺聯盟】後臺回覆【PyTorch】可以獲得獨家PyTorch學習教程pdf版
舉例子說明torch.full()使用方法:
t = torch.full((3,3),10)
print("torch.full((3,3),10)的輸出結果\n",t)
執行結果呢:
torch.full((3,3),10)的輸出結果
tensor([[10., 10., 10.],
[10., 10., 10.],
[10., 10., 10.]])
推薦閱讀:
PyTorch | torch.from_numpy使用方法