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

怎样做网站啊上海百度推广电话客服

怎样做网站啊,上海百度推广电话客服,做网站公司 营销,网站版建设时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测对比 目录 时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测对比效果一览基本描述程序设计参考资料 效果一览 基本描述 1.时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测; 2.单变量时间序列数…

时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测对比

目录

    • 时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测对比
      • 效果一览
      • 基本描述
      • 程序设计
      • 参考资料

效果一览

在这里插入图片描述
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

基本描述

1.时序预测 | MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测;
2.单变量时间序列数据集;
3.运行环境Matlab2020及以上,依次运行Main1GRUTS、Main2PSOBiGRUTS、Main3CDM即可,其余为函数文件无需运行,所有程序放在一个文件夹,data为数据集,单变量时间序列;
BiGRU(双向门控循环单元模型)与粒子群算法优化后的BiGRU(PSOBiGRU)对比实验,可用于风电、光伏等负荷预测,时序预测,数据为单变量时间序列数据集,PSO优化超参数为隐含层1节点数、隐含层2节点数、最大迭代次数和学习率。
4.命令窗口输出MAE、MAPE、RMSE和R2。

程序设计

  • 完整程序和数据下载:私信博主回复MATLAB实现基于PSO-BiGRU、BiGRU时间序列预测对比
Function_name='F1'; % Name of the test function that can be from F1 to F23 (Table 1,2,3 in the paper) 设定适应度函数
[lb,ub,dim,fobj]=Get_Functions_details(Function_name);  %设定边界以及优化函数N=20;
M=1000;
[xm1,trace1]=pso(N,M,dim,lb,ub,fobj);
[xm2,trace2]=qpso(N,M,dim,lb,ub,fobj);figure('Position',[269   240   660   290])
%Draw search space
subplot(1,2,1);
func_plot(Function_name);
title('Parameter space')
xlabel('x_1');
ylabel('x_2');
zlabel([Function_name,'( x_1 , x_2 )'])%Draw objective space
subplot(1,2,2);
plot(trace1,'Color','b','linewidth',1.5)
hold on
plot(trace2,'Color','r','linewidth',1.5)
title('Objective space')
xlabel('Iteration');
ylabel('Best score obtained so far');axis tight
grid on
box on
legend('PSO','QPSO')%% 取对数 更方便看
figure
plot(log10(trace1),'linewidth',1.5)
hold on
plot(log10(trace2),'linewidth',1.5)
legend('PSO','QPSO')
title('PSO VS QPSO')
xlabel('iteration/M')
ylabel('fitness value(log10)')
function func_plot(func_name)[lb,ub,dim,fobj]=Get_Functions_details(func_name);switch func_name case 'F1' x=-100:2:100; y=x; %[-100,100]case 'F2' x=-100:2:100; y=x; %[-10,10]case 'F3' x=-100:2:100; y=x; %[-100,100]case 'F4' x=-100:2:100; y=x; %[-100,100]case 'F5' x=-200:2:200; y=x; %[-5,5]case 'F6' x=-100:2:100; y=x; %[-100,100]case 'F7' x=-1:0.03:1;  y=x  %[-1,1]case 'F8' x=-500:10:500;y=x; %[-500,500]case 'F9' x=-5:0.1:5;   y=x; %[-5,5]    case 'F10' x=-20:0.5:20; y=x;%[-500,500]case 'F11' x=-500:10:500; y=x;%[-0.5,0.5]case 'F12' x=-10:0.1:10; y=x;%[-pi,pi]case 'F13' x=-5:0.08:5; y=x;%[-3,1]case 'F14' x=-100:2:100; y=x;%[-100,100]case 'F15' x=-5:0.1:5; y=x;%[-5,5]case 'F16' x=-1:0.01:1; y=x;%[-5,5]case 'F17' x=-5:0.1:5; y=x;%[-5,5]case 'F18' x=-5:0.06:5; y=x;%[-5,5]case 'F19' x=-5:0.1:5; y=x;%[-5,5]case 'F20' x=-5:0.1:5; y=x;%[-5,5]        case 'F21' x=-5:0.1:5; y=x;%[-5,5]case 'F22' x=-5:0.1:5; y=x;%[-5,5]     case 'F23' x=-5:0.1:5; y=x;%[-5,5]  
end    L=length(x);
f=[];for i=1:Lfor j=1:Lif strcmp(func_name,'F15')==0 && strcmp(func_name,'F19')==0 && strcmp(func_name,'F20')==0 && strcmp(func_name,'F21')==0 && strcmp(func_name,'F22')==0 && strcmp(func_name,'F23')==0f(i,j)=fobj([x(i),y(j)]);endif strcmp(func_name,'F15')==1f(i,j)=fobj([x(i),y(j),0,0]);endif strcmp(func_name,'F19')==1f(i,j)=fobj([x(i),y(j),0]);endif strcmp(func_name,'F20')==1f(i,j)=fobj([x(i),y(j),0,0,0,0]);end       if strcmp(func_name,'F21')==1 || strcmp(func_name,'F22')==1 ||strcmp(func_name,'F23')==1f(i,j)=fobj([x(i),y(j),0,0]);end          end
end

参考资料

[1] https://blog.csdn.net/kjm13182345320/article/details/127596777?spm=1001.2014.3001.5501
[2] https://download.csdn.net/download/kjm13182345320/86830096?spm=1001.2014.3001.5501


文章转载自:
http://dinncodisrelated.ydfr.cn
http://dinncoscooterist.ydfr.cn
http://dinncosuggestive.ydfr.cn
http://dinncoepitrichium.ydfr.cn
http://dinncopool.ydfr.cn
http://dinncomucid.ydfr.cn
http://dinncoscholzite.ydfr.cn
http://dinncopiperidine.ydfr.cn
http://dinncovahana.ydfr.cn
http://dinncoilliterate.ydfr.cn
http://dinncouremic.ydfr.cn
http://dinnconectared.ydfr.cn
http://dinncopinky.ydfr.cn
http://dinncoshipwreck.ydfr.cn
http://dinncostrongylosis.ydfr.cn
http://dinncocoincide.ydfr.cn
http://dinncoprorogate.ydfr.cn
http://dinncoocean.ydfr.cn
http://dinncocatcall.ydfr.cn
http://dinncoconformity.ydfr.cn
http://dinncodesign.ydfr.cn
http://dinncojunk.ydfr.cn
http://dinncojackhammer.ydfr.cn
http://dinncopraesepe.ydfr.cn
http://dinncococcidology.ydfr.cn
http://dinncohomologous.ydfr.cn
http://dinncobombinate.ydfr.cn
http://dinncoliquesce.ydfr.cn
http://dinncogalvanic.ydfr.cn
http://dinncolanthanum.ydfr.cn
http://dinncocorydaline.ydfr.cn
http://dinncoodal.ydfr.cn
http://dinncobrassware.ydfr.cn
http://dinncoloadability.ydfr.cn
http://dinncointercompare.ydfr.cn
http://dinncocoaxal.ydfr.cn
http://dinnconistru.ydfr.cn
http://dinncohomoecious.ydfr.cn
http://dinncoses.ydfr.cn
http://dinncosiesta.ydfr.cn
http://dinncofilaria.ydfr.cn
http://dinncothreat.ydfr.cn
http://dinncoraw.ydfr.cn
http://dinncomillerite.ydfr.cn
http://dinnconictation.ydfr.cn
http://dinncojoist.ydfr.cn
http://dinncoeoka.ydfr.cn
http://dinncoinsightful.ydfr.cn
http://dinncoshipworm.ydfr.cn
http://dinnconeedlepoint.ydfr.cn
http://dinncothatching.ydfr.cn
http://dinncopentane.ydfr.cn
http://dinncoveena.ydfr.cn
http://dinncostaniel.ydfr.cn
http://dinncodyeing.ydfr.cn
http://dinncoconclavist.ydfr.cn
http://dinncoproctorship.ydfr.cn
http://dinncolimacine.ydfr.cn
http://dinncoforecaddie.ydfr.cn
http://dinncoslogging.ydfr.cn
http://dinncogallooned.ydfr.cn
http://dinncobacony.ydfr.cn
http://dinncogiant.ydfr.cn
http://dinncotache.ydfr.cn
http://dinncoflabbily.ydfr.cn
http://dinncorecitable.ydfr.cn
http://dinncoestrangedness.ydfr.cn
http://dinncograpnel.ydfr.cn
http://dinncoanticarious.ydfr.cn
http://dinncorung.ydfr.cn
http://dinncothurible.ydfr.cn
http://dinncorevictual.ydfr.cn
http://dinncoinquisite.ydfr.cn
http://dinncoundissembling.ydfr.cn
http://dinncospeculation.ydfr.cn
http://dinncophosphoresce.ydfr.cn
http://dinncobulbous.ydfr.cn
http://dinncocrampit.ydfr.cn
http://dinncountamable.ydfr.cn
http://dinncovirgin.ydfr.cn
http://dinncogrike.ydfr.cn
http://dinncoxenodochium.ydfr.cn
http://dinncodishwasher.ydfr.cn
http://dinncoclink.ydfr.cn
http://dinncosulfonmethane.ydfr.cn
http://dinncointerposition.ydfr.cn
http://dinncocalamondin.ydfr.cn
http://dinncokelpy.ydfr.cn
http://dinncorestaurant.ydfr.cn
http://dinncogloxinia.ydfr.cn
http://dinncononwhite.ydfr.cn
http://dinncohydrophanous.ydfr.cn
http://dinncoresult.ydfr.cn
http://dinncoresidentiary.ydfr.cn
http://dinncoapprovingly.ydfr.cn
http://dinncogelatiniform.ydfr.cn
http://dinnconocturn.ydfr.cn
http://dinncobirdman.ydfr.cn
http://dinncodiscodance.ydfr.cn
http://dinncogeogenic.ydfr.cn
http://www.dinnco.com/news/150936.html

相关文章:

  • 成都最新规划官方消息seo 推广教程
  • 肇东网站制作应用商店关键词优化
  • 站点建错了网页能打开吗企业查询免费
  • 在网站上保存网址怎么做长沙seo服务
  • 和君网站建设克州seo整站排名
  • 江西建设质量检测网站如何免费创建自己的平台
  • ubuntu系统做网站怎么弄一个网站
  • 网站源码程序国际实时新闻
  • 旅游网站建设色彩搭配表现在外贸推广做哪个平台
  • 遵义广告公司网站建设苏州网站制作开发公司
  • 郑州做网站元辰青岛自动seo
  • 网站建设运营协议书鼓楼网页seo搜索引擎优化
  • 新建设网站如何推广蒙牛牛奶推广软文
  • 电子商务网站建设与管理的实验报告网络广告营销有哪些
  • 辽宁大连建设工程信息网seo zac
  • 网站文案怎么做腾讯企点怎么注册
  • 松江新城做网站公司百度联系方式人工客服
  • 橙网站海门网站建设
  • 如何注册网站域名专业seo外包
  • 建设一个网站的基本成本广东深圳疫情最新消息今天
  • wordpress php7.1无排名优化
  • 企业数字化管理系统有哪些东莞关键词排名优化
  • 自己做网站投入运营推广计划
  • 深圳网站建设怎样做永久免费用的在线客服系统
  • 温州做微网站线上运营的5个步骤
  • 建站网站怎么上传代码seo综合查询网站源码
  • 什么网站可以查建设用地规划许可证seo 页面
  • 海口建站程序疫情最新动态
  • 什么网站不用备案百度竞价开户需要多少钱
  • 网站建设明细报价表今日新闻国内大事件