
AI
hankern
Code World,Cool Life
展开
-
人工智能学习(一)newff函数介绍
以下是matlab中的newff函数说明,不是neurolab中的newff(两者的参数不同)newff函数,指的是训练前馈网络的第一步是建立网络对象,实质是newff函数的参数。newff函数的格式为:net=newff(PR,[S1 S2 ...SN],{TF1 TF2...TFN},BTF,BLF,PF)。newff函数的格式为:net=newff(PR,[S1 S2 ...SN...原创 2019-08-20 06:05:49 · 8094 阅读 · 0 评论 -
人工智能学习(二)newff神经网络训练前为什么要对数据做预处理
一般来说,拿到数据都要做预处理,包括之前提到的去均值和方差归一化。构造的数据幅度保持在-1到1之间,否则会不收敛。It need because default activation function TanSig must generate output in range [-1, 1]I recommend you scalable input data too, for get ...原创 2019-08-21 23:13:37 · 1114 阅读 · 0 评论 -
人工智能学习(三)关于NeroLab的使用
NeuroLab - a library of basic nueral networks algorithms with flexible network configurations and learning algorithms. To simplify migration, the syntax of the library is as close to a package of Neur...原创 2019-08-22 06:40:36 · 733 阅读 · 0 评论 -
人工智能学习(四)plt.plot()函数使用
plt.plot(x,y,format_string,**kwargs)x轴数据,y轴数据,format_string控制曲线的格式字串format_string 由颜色字符,风格字符,和标记字符plt.plot(dataX,dataY,'.',trainX,trainY, 'p',predictX,predictY,'o')...原创 2019-08-22 23:48:10 · 707 阅读 · 0 评论