欢迎来到天天文库
浏览记录
ID:39289337
大小:274.52 KB
页数:7页
时间:2019-06-29
《模式识别与机器学习实验报告》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、模式识别与机器学习实验报告姓名侯晓元学号0909122810班级计科1206班指导老师梁毅雄实验一warmUpExercise.m中加入A=eye(5)在plotData添加plot(x,y,'rx','MarkerSize',10);ylabel('Profitin$10,000s');xlabel('PopulationofCityin10,000s');在computeCost.m中添加J=(X*theta-y)'*(X*theta-y)/(2*m);在gradientDescent.m文件中添加theta=theta-(alpha/
2、m)*X'*(X*theta-y);实验二在plotData.m中添加pos=find(y==1);neg=find(y==0);plot(X(pos,1),X(pos,2),'k+','LineWidth',2,...'MarkerSize',7);plot(X(neg,1),X(neg,2),'ko','MarkerFaceColor','y',...'MarkerSize',7);在sigmoid.m中添加e=ones(size(g));g=e./(e+exp(-z));在predict.m中添加p=sigmoid(X*theta);
3、pos=find(p>=0.5);neg=find(p<0.5);p(pos)=1;p(neg)=0;
此文档下载收益归作者所有