finished chapter 5

This commit is contained in:
Joseph Hopfmüller
2022-10-17 00:21:56 +02:00
parent e3b6c8b90c
commit 34b6999e39
5 changed files with 113 additions and 0 deletions

48
05_01_gradient.py Normal file
View File

@@ -0,0 +1,48 @@
import numpy as np
# linear regression, no bias
# f = w*x
# f = 2*x
X = np.array([1, 2, 3, 4], dtype=np.float32)
Y = np.array([2, 4, 6, 8], dtype=np.float32)
w = 0.0
# model prediction
def forward(x):
return w*x
# loss = MSE
def loss(y, y_pred):
return ((y_pred - y)**2).mean()
# gradient
# mse = 1/N * (w*x - y)**2
# dJ/dw = 1/N * 2x * (w*x - y)
def gradient(x, y, y_pred):
return np.dot(2*x, y_pred-y).mean()
print(f'Prediction before training: f(5) = {forward(5):.3f}')
#Training
learning_rate = .01
n_iters = 20
for epoch in range(n_iters):
# prediction = forward pass
y_pred = forward(X)
# loss
l = loss(Y, y_pred)
# gradients
dw = gradient(X, Y, y_pred)
#update weights
w -= learning_rate*dw
if epoch % 2 == 0: #every nth epoch
print(f'epoch {epoch+1}: w = {w:.3f}, loss = {l:.8f}')
print(f'Prediction after training: f(5) = {forward(5):.3f}')