ysn-rfd's picture
Upload 26 files
835424e verified
raw
history blame contribute delete
89 Bytes
import torch as t
x = t.tensor([[1,1], [2,2], [3,3], [4,4]])
y = x.pow(1)
print(y)