File size: 260 Bytes
835424e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import torch as t
import torch.nn as nn
import numpy as np
x = t.tensor(1., requires_grad=True)
w = t.tensor(2., requires_grad=True)
b = t.tensor(3., requires_grad=True)
y = w*x+b
y.backward()
print(x.grad)
print(w.grad)
print(b.grad) |