Machine learning (7-Regularization)

1、The Problem of Over-fitting

  • image.png
  • image.png
  • image.png
  • image.png
  • image.png

2、Cost Function

  • image.png
  • image.png
  • image.png
  • image.png

3、Regularized Linear Regression

  • image.png
  • image.png

4、Regularized Logistic Regression

  • image.png
import numpy as np
def costReg(theta, X, y, learningRate):
 theta = np.matrix(theta)
 X = np.matrix(X)
 y = np.matrix(y)
 first = np.multiply(-y, np.log(sigmoid(X*theta.T)))
 second = np.multiply((1 - y), np.log(1 - sigmoid(X*theta.T)))
 reg = (learningRate / (2 * len(X))* np.sum(np.power(theta[:,1:the
ta.shape[1]],2))
 return np.sum(first - second) / (len(X)) + reg
posted @ 2021-06-21 08:45  我在吃大西瓜呢  阅读(41)  评论(0编辑  收藏  举报