Welcome and introduction Overview Reading Log 9/9 videos and quiz completed; 10/29 Review; 9/9 videos and quiz completed; 10/29 Review; Note 1.1 Welco ...
分类:
系统相关 时间:
2017-02-16 11:22:55
阅读次数:
190
最近翻Peter Harrington的《机器学习实战》,看到Logistic回归那一章有点小的疑问。 作者在简单介绍Logistic回归的原理后,立即给出了梯度上升算法的code:从算法到代码跳跃的幅度有点大,作者本人也说了,这里略去了一个简单的数学推导。 那么其实这个过程在Andrew Ng的机 ...
分类:
系统相关 时间:
2017-02-14 00:58:06
阅读次数:
355
文章来源:https://www.dezyre.com/article/top-10-machine-learning-algorithms/202 本人自行翻译,如有错误,还请指出。后续会继续补充实例及代码实现。 3.机器学习算法概述 3.1 朴素贝叶斯分类器算法 手动分类网页,文档,电子邮件或任 ...
分类:
编程语言 时间:
2017-02-13 20:22:01
阅读次数:
441
文章来源:https://www.dezyre.com/article/top-10-machine-learning-algorithms/202 本人自行翻译,如有错误,还请指出。后续会继续补充实例及代码实现。 根据最近的一项研究,在未来10年,机器学习算法将取代全球25%的工作机会。 随着大数 ...
分类:
编程语言 时间:
2017-02-13 20:11:54
阅读次数:
165
Overview Cost Function and Backpropagation Cost Function Backpropagation Algorithm Backpropagation Intuition Back Propagation in Practice Implementati ...
分类:
系统相关 时间:
2017-02-12 10:53:49
阅读次数:
198
第二课 Moving Data 数据移动 常用内置函数 (1)加载文件 load 文件名.dat(或load('文件名.dat')) 接着输入文件名便可查看文件里的数据 (2)显示当前工作空间的所有变量 who/whos(更详细) (3)清除变量 clear 变量名 直接输入clear的话将删除当前 ...
分类:
移动开发 时间:
2017-02-03 18:03:13
阅读次数:
317
第四课 Plotting Data 绘图数据 t = [0,0.01,0.98]; y1 = sin(2*pi*4*t); y2 = cos(2*pi*4*t); plot(t,y1);(绘制图1) hold on;(图1不消失) plot(t,y2,'r');(用红色绘制图2) xlable('t ...
分类:
系统相关 时间:
2017-02-03 18:00:29
阅读次数:
273
第五课 控制语句和方程 For,while,if statements and functions (1)For loop v=zeros(10,1) %initial vectors for i=1:10, %Assign for the vectors v(i) = 2^i; end; v (% ...
分类:
系统相关 时间:
2017-02-03 17:59:14
阅读次数:
269
第二周 第一部分 Multivariate Linear Regression Multiple Features Note: [7:25 - θT is a 1 by (n+1) matrix and not an (n+1) by 1 matrix] Linear regression with ...
分类:
系统相关 时间:
2017-01-29 18:28:09
阅读次数:
340
《Machine Learning》系列学习笔记 第一周 第一部分 Introduction The definition of machine learning (1)older, informal definition——Arthur Samuel——"the field of study th ...
分类:
系统相关 时间:
2017-01-29 16:14:08
阅读次数:
611