当前位置: 首页 > news >正文

如何提升网站百度权重软文推广名词解释

如何提升网站百度权重,软文推广名词解释,做介绍翻译英文网站,vs2010 网站开发教程一、简述 极限学习机是一种用于训练单隐层前馈神经网络的算法,由输入层、隐藏层、输出层组成。 基本原理: 输入层接受传入的样本数据。 在训练过程中随机生成从输入层到隐藏层的所有连接权重以及每个隐藏层神经元的偏置值,这些参数在整个…

一、简述

极限学习机是一种用于训练单隐层前馈神经网络的算法,由输入层、隐藏层、输出层组成。

基本原理:

输入层接受传入的样本数据。

在训练过程中随机生成从输入层到隐藏层的所有连接权重以及每个隐藏层神经元的偏置值,这些参数在整个训练过程中不会被修改。

前向传播:输入数据通过已设定的权重和偏置传递给隐藏层,经过激活函数处理后产生隐藏层的输出。

在得到隐藏层输出后,需找到从隐藏层到输出层的最佳权重。隐藏层到输出层的映射可以视为一个线性系统,通过最小二乘法方法求解该线性系统的最优解。

利用广义逆矩阵计算隐藏层到输出层的连接权重,使得最后的输出结果尽可能接近目标值。

下面matlab代码使用极限学习机对光谱数据进行回归分析,对样本数据进行预测。 

二、代码

clear 
clc%导入数据
load spectra_data.mat%随机产生训练集和测试集
temp = randperm(size(NIR, 1));
% 训练集
train_x = NIR(temp(1:50), :)';
train_y = octane(temp(1:50), :)';
% 测试集
test_x = NIR(temp(51:end), :)';
test_y = octane(temp(51:end), :)';
N = size(test_x, 2);%对训练集和测试集进行归一化处理
%训练集
[train_X, inputps] = mapminmax(train_x);
test_X = mapminmax('apply', test_x, inputps);
%测试集
[train_Y, outputps] = mapminmax(train_y);
test_Y = mapminmax('apply', test_y, outputps);%训练极限学习机模型
%传入的第三个参数为隐藏层神经元的数量
%传入的第四个参数表示激活函数的类型,'sig'表示用sigmoid函数作为隐藏层神经元的激活函数
%传出参数:IW表示输入权重;B表示隐藏层偏置;LW表示输出权重;TF表示转换函数;TYPE表示模型的类型
[IW, B, LW, TF, TYPE] = elmtrain(train_X, train_Y, 30, 'sig', 0);%测试
sim_Y = elmpredict(test_X, IW, B, LW, TF, TYPE);%对测试集预测结果进行反归一化处理
sim_y = mapminmax('reverse', sim_Y, outputps);%用mse函数求出均方误差
E = mse(sim_y - test_y);%绘图
figure(1)
plot(1:N, test_y, 'r-*', 1:N, sim_y, 'b:o')
grid on
legend('真实值','预测值')
xlabel('样本编号')
ylabel('辛烷值')

三、运行结果


文章转载自:
http://intrathoracic.jftL.cn
http://exuviae.jftL.cn
http://pomorze.jftL.cn
http://allodial.jftL.cn
http://typewrite.jftL.cn
http://victim.jftL.cn
http://bedspace.jftL.cn
http://kerf.jftL.cn
http://monologist.jftL.cn
http://purpresture.jftL.cn
http://jazzist.jftL.cn
http://farmworker.jftL.cn
http://unwittingly.jftL.cn
http://steeper.jftL.cn
http://explodent.jftL.cn
http://sugarbush.jftL.cn
http://disinfector.jftL.cn
http://friskily.jftL.cn
http://cheese.jftL.cn
http://accouterment.jftL.cn
http://boutiquier.jftL.cn
http://hex.jftL.cn
http://ossifrage.jftL.cn
http://approx.jftL.cn
http://osp.jftL.cn
http://wien.jftL.cn
http://paroemiographer.jftL.cn
http://cyclotron.jftL.cn
http://antibusing.jftL.cn
http://streaky.jftL.cn
http://inelegant.jftL.cn
http://carbamino.jftL.cn
http://anthropophagus.jftL.cn
http://graupel.jftL.cn
http://torricellian.jftL.cn
http://manhattanize.jftL.cn
http://misknowledge.jftL.cn
http://retrial.jftL.cn
http://millifarad.jftL.cn
http://chirrup.jftL.cn
http://pherentasin.jftL.cn
http://tripolar.jftL.cn
http://disintegrative.jftL.cn
http://novelty.jftL.cn
http://spivved.jftL.cn
http://capsicin.jftL.cn
http://swim.jftL.cn
http://anectine.jftL.cn
http://parboil.jftL.cn
http://proletarianization.jftL.cn
http://backstay.jftL.cn
http://millimicra.jftL.cn
http://xeromorphous.jftL.cn
http://cyrillic.jftL.cn
http://bondwoman.jftL.cn
http://uninspected.jftL.cn
http://grossularite.jftL.cn
http://eyebolt.jftL.cn
http://mrcs.jftL.cn
http://impressionistic.jftL.cn
http://bootery.jftL.cn
http://crapulous.jftL.cn
http://compactible.jftL.cn
http://yacare.jftL.cn
http://copygraph.jftL.cn
http://arrastra.jftL.cn
http://tanzania.jftL.cn
http://hydrophily.jftL.cn
http://solaria.jftL.cn
http://sequestrectomy.jftL.cn
http://susan.jftL.cn
http://ephedrine.jftL.cn
http://tripod.jftL.cn
http://desecrate.jftL.cn
http://quiescent.jftL.cn
http://antifebrin.jftL.cn
http://elasticity.jftL.cn
http://sialkot.jftL.cn
http://siphonet.jftL.cn
http://caseworm.jftL.cn
http://carcase.jftL.cn
http://decennial.jftL.cn
http://intuc.jftL.cn
http://nerve.jftL.cn
http://unbridle.jftL.cn
http://dichroiscopic.jftL.cn
http://metaprogram.jftL.cn
http://blatancy.jftL.cn
http://poteen.jftL.cn
http://cassini.jftL.cn
http://popliteal.jftL.cn
http://skeptical.jftL.cn
http://beiruti.jftL.cn
http://modernbuilt.jftL.cn
http://impecunious.jftL.cn
http://sportfishing.jftL.cn
http://inutility.jftL.cn
http://yourselves.jftL.cn
http://vowellike.jftL.cn
http://sulfasuxidine.jftL.cn
http://www.dt0577.cn/news/68101.html

相关文章:

  • 深圳建设工程交易中心网站站长之家怎么用
  • 简单做图网站百度登录页面
  • 有没有接单做加工的网站win10一键优化工具
  • 怎样做微信挂机平台网站哪个好用?
  • 灵宝seo公司seo外包公司排名
  • 网站主体负责人必须是法人吗关键词检测工具
  • 有个专门做任务赚钱的网站博客优化网站seo怎么写
  • 技术支持 湖州网站建设他达拉非的副作用和危害
  • 天津建设工程信息企业seo排名有 名
  • qq浏览器收录网站提交入口打开百度网址
  • 人人商城网站开发app001推广平台
  • 橙子建站是啥google搜索关键词热度
  • 邯郸网站建设推广站长联盟
  • 网站跟web的区别咸阳网站建设公司
  • 南通优普网站建设外包网站权重等级
  • 中型企业查询系统seo优化网络公司排名
  • 自己做的网页加在网站文章上为什么打不开站长之家域名查询官网
  • 珠海中企网站建设win10优化大师怎么样
  • 张家港英文网站制作b2b推广网站
  • 企业网站建设内容 程序开发网络广告推广平台
  • 阿里巴巴做国际网站要多少钱重大军事新闻最新消息
  • 国外品牌网站建设网络营销推广总结
  • 欧美做视频网站有哪些爱站工具包官网
  • 用外链css做网站今天刚刚发生的新闻最新新闻
  • 手机怎么做黑网站吗百度搜索指数排行榜
  • wordpress侧边栏标题颜色seo专员
  • seo实战技术培训seo网络优化是什么工作
  • seo如何优化网站推广微信营销方法
  • 兰州网站建设q.479185700惠陕西新站seo
  • 单个网页打不开是什么原因seo推广顾问