#=============================================#
2.Basic autogard example2
#=============================================#
Create tensors of shape (10,3) and (10,2)
x = torch.randn(10, 3)
y = torch.randn(10, 2)
Build a fully connected layer
linear = nn.linear(3, 2)
print('w:', linear.weight)
print('b...