
Python
Aki-Z
对实践应用和统计感兴趣的数据科学学习者(`・ω・´)
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【Machine Learning, Coursera】Week2 ex1: Linear Regression with Python
-linearReg.py import numpy as np import matplotlib.pyplot as plt def warmUpExercise(): 'An example function that returns the 5x5 identity matrix' A = np.eye(5) print(A) def plotData(X,...原创 2018-07-31 10:38:22 · 232 阅读 · 0 评论 -
【Machine Learning, Coursera】Week3 ex1: Logistic Regression with Python
import numpy as np import matplotlib.pyplot as plt from scipy.optimize import minimize def plotData(X,y): """ Plot the data points with + for the positive examples and o for the negative ...原创 2018-08-07 18:10:51 · 318 阅读 · 0 评论