机器学习
机器学习,深度学习
无人驾驶吕同学
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
机器学习课程(吴恩达)编程答案(2)
plotData.mfunction plotData(X, y)%PLOTDATA Plots the data points X and y into a new figure % PLOTDATA(x,y) plots the data points with + for the positive examples% and o for the negative exampl...原创 2020-03-30 16:43:52 · 412 阅读 · 0 评论 -
机器学习课程(吴恩达)学习笔记(3)—分类算法和正则化
Logistic Regression原创 2020-03-16 20:56:47 · 244 阅读 · 0 评论 -
机器学习课程(吴恩达)学习笔记(2)—MATLAB和Octave代码
MATLAB和Octave代码(通用)cd 'D:\matlab\'A=[1,2;3,4;5,6];B=A(2,:);C=A([1,3],:);sz=size(A);size1=size(A,1);size2=size(A,2);D=[A,[100;200;300]];E=A(:);v=[1 2 3 4 5 6];length1=length(v);load X....原创 2020-03-09 21:44:11 · 416 阅读 · 0 评论 -
机器学习课程(吴恩达)学习笔记(1)—机器学习
(一)机器学习分类监督学习Supervised Learning数据集+标记(正确的答案)Regression:回归问题(结果为连续值)Classfication:分类问题(结果为离散值)无监督学习Unsupervised LearningCluster Algorithms聚类算法The Cocktail party Algorithm(二)线性回归The Cost Funct...原创 2020-03-02 15:16:33 · 174 阅读 · 0 评论
分享