欢迎来到天天文库
浏览记录
ID:58565408
大小:10.50 KB
页数:1页
时间:2020-10-20
《随机梯度下降法.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、随机梯度下降法function[theta0,theta1]=Gradient_descent_rand(X,Y);theta0=0;theta1=0;t0=theta0;t1=theta1;fori=1:1:100t0=theta0-0.01*(theta0+theta1*X(i,1)-Y(i,1))*1t1=theta1-0.01*(theta0+theta1*X(i,1)-Y(i,1))*X(i,1)theta0=t0theta1=t1end
此文档下载收益归作者所有