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
原文地址:https://www.cnblogs.com/wangzheming35/p/14911053.html