随笔分类 -  机器学习

摘要:首先,贴出梯度下降高级优化算法的实现代码(octave或者matlab,来源于吴恩达机器学习) function [J, grad] = costFunction(theta, X, y) options = optimset('GradObj', 'on', 'MaxIter', 400); [t 阅读全文
posted @ 2020-09-07 20:41 neverstopcoding 阅读(781) 评论(0) 推荐(0)