【预测模型】基于鲸鱼算法优化BP神经网络实现数据预测matlab代码

1 简介

随着现代居民居住地愈发集中,供水管网规模不断扩大,水资源供给面临着新的困难和挑战.其中包括水资源调度时的动态变化,管网的突发故障,水资源的不可控流失以及多目标和计算量庞大等问题.BP神经网络因拥有较强的自学习能力和泛化能力而被广泛应用于水资源预测问题中,但其也存在收敛速度慢,容易陷入局部极值的问题.群智能算法作为一种寻优算法,具有操作简单,收敛速度快,全局寻优能力强等优点.为提高BP神经网络在水资源预测方面的收敛速度和预测精度,提出一种基于鲸鱼算法优化的BP神经网络水资源需求预测模型,,再通过BP神经网络采用WOA算法输出的最优权值,阈值作为初始参数值训练模型.实验验证WOA-BP神经网络方法相比传统BP方法在预测精度方面有更优的表现.

具体模型参考底下​文献。

2 部分代码

%_________________________________________________________________________%
% Whale Optimization Algorithm (WOA) source codes demo 1.0               %
% The Whale Optimization Algorithm
function [Leader_score,Leader_pos,Convergence_curve]=WOA(SearchAgents_no,Max_iter,lb,ub,dim,fobj)

% initialize position vector and score for the leader
Leader_pos=zeros(1,dim);
Leader_score=inf; %change this to -inf for maximization problems


%Initialize the positions of search agents
% Positions=initialization(SearchAgents_no,dim,ub,lb);
Positions=ceil(rand(SearchAgents_no,dim).*(ub-lb)+lb);

Convergence_curve=zeros(1,Max_iter);

t=0;% Loop counter

% Main loop
while t<Max_iter
   for i=1:size(Positions,1)
       
       % Return back the search agents that go beyond the boundaries of the search space
       Flag4ub=Positions(i,:)>ub;
       Flag4lb=Positions(i,:)<lb;
       Positions(i,:)=(Positions(i,:).*(~(Flag4ub+Flag4lb)))+ub.*Flag4ub+lb.*Flag4lb;
       
       % Calculate objective function for each search agent
       fitness=fobj(Positions(i,:));
       
       % Update the leader
       if fitness<Leader_score % Change this to > for maximization problem
           Leader_score=fitness; % Update alpha
           Leader_pos=Positions(i,:);
       end
       
   end
   
   a=2-t*((2)/Max_iter); % a decreases linearly fron 2 to 0 in Eq. (2.3)
   
   % a2 linearly dicreases from -1 to -2 to calculate t in Eq. (3.12)
   a2=-1+t*((-1)/Max_iter);
   
   % Update the Position of search agents 
   for i=1:size(Positions,1)
       r1=rand(); % r1 is a random number in [0,1]
       r2=rand(); % r2 is a random number in [0,1]
       
       A=2*a*r1-a;  % Eq. (2.3) in the paper
       C=2*r2;      % Eq. (2.4) in the paper
       
       
       b=1;               % parameters in Eq. (2.5)
       l=(a2-1)*rand+1;   % parameters in Eq. (2.5)
       
       p = rand();        % p in Eq. (2.6)
       
       for j=1:size(Positions,2)
           
           if p<0.5   
               if abs(A)>=1
                   rand_leader_index = floor(SearchAgents_no*rand()+1);
                   X_rand = Positions(rand_leader_index, :);
                   D_X_rand=abs(C*X_rand(j)-Positions(i,j)); % Eq. (2.7)
                   Positions(i,j)=X_rand(j)-A*D_X_rand;      % Eq. (2.8)
                   
               elseif abs(A)<1
                   D_Leader=abs(C*Leader_pos(j)-Positions(i,j)); % Eq. (2.1)
                   Positions(i,j)=Leader_pos(j)-A*D_Leader;      % Eq. (2.2)
               end
               
           elseif p>=0.5
             
               distance2Leader=abs(Leader_pos(j)-Positions(i,j));
               % Eq. (2.5)
               Positions(i,j)=distance2Leader*exp(b.*l).*cos(l.*2*pi)+Leader_pos(j);
               
           end
           
       end
   end
   t=t+1;
   Convergence_curve(t)=Leader_score;
%     [t Leader_score]
end

3 仿真结果

4 参考文献

[1]马创, 周代棋, 张业. 基于改进鲸鱼算法的BP神经网络水资源需求预测方法[J]. 计算机科学, 2020, 47(S02):5.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Matlab科研辅导帮

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值