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

桂林网站建设网推怎么推广

桂林网站建设,网推怎么推广,c2c模式名词解释,深圳网站建设价格是多少樽海鞘算法的主要灵感是樽海鞘在海洋中航行和觅食时的群聚行为。相关文献表示,多目标优化之樽海鞘算法的结果表明,该算法可以逼近帕雷托最优解,收敛性和覆盖率高。 通过给SSA算法配备一个食物来源库来解决第一个问题。该存储库维护了到目前为…

樽海鞘算法的主要灵感是樽海鞘在海洋中航行和觅食时的群聚行为。相关文献表示,多目标优化之樽海鞘算法的结果表明,该算法可以逼近帕雷托最优解,收敛性和覆盖率高。

通过给SSA算法配备一个食物来源库来解决第一个问题。该存储库维护了到目前为止优化过程中获得的最优解,非常类似于多目标粒子群优化(MOPSO)中的存档。存储库有一个最大大小来存储数量有限的最优解决方案。在优化过程中,使用Pareto优势操作符将每个樽海鞘与所有存储库原方案进行比较。

  • 如果一个樽海鞘在存储库中占优,则必须交换它们(把樽海鞘放入存储库,原方案拿出)。如果一个樽海鞘在存储库中优于一组解决方案,那么应该将这一组解决方案全部从存储库中删除,并把该樽海鞘应该添加到存储库中。

  • 如果至少有一个存储库中的原方案比该樽海鞘更优,那么该樽海鞘应被丢弃,不加入存储库。

  • 如果与所有存储库居民相比,该樽海鞘与之互不占优,那么该樽海鞘即是最优解,则必须将其添加到存储库中。

这些规则可以保证存储库得到的始终都是目前为止算法所获得的最优解决方案。但是,有一种特殊情况,即存储库已满,与存储库原方案相比,该樽海鞘也不占优,此时本应该将该樽海鞘加入存储库,但是存储库满了。当然,最简单的方法是随机删除归档中的一个解决方案,并将其替换为这个樽海鞘。

由此可见,多目标樽海鞘算法与多目标灰狼算法一致,也是采用的网格机制。大家可以对比学习。

多目标樽海鞘在ZDT1中的表现:

b560c838a0cd825789136038ce26b35b.png

主函数代码:

clc
clear
close all% Change these details with respect to your problem
ObjectiveFunction=@ZDT1;
dim=5;
lb=0;
ub=1;
obj_no=2;if size(ub,2)==1ub=ones(1,dim)*ub;lb=ones(1,dim)*lb;
endmax_iter=100;
N=200;
ArchiveMaxSize=100;
Archive_X=zeros(100,dim);
Archive_F=ones(100,obj_no)*inf;
Archive_member_no=0;
r=(ub-lb)/2;
V_max=(ub(1)-lb(1))/10;
Food_fitness=inf*ones(1,obj_no);
Food_position=zeros(dim,1);
Salps_X=initialization(N,dim,ub,lb);
fitness=zeros(N,2);
V=initialization(N,dim,ub,lb);
position_history=zeros(N,max_iter,dim);
for iter=1:max_iterc1 = 2*exp(-(4*iter/max_iter)^2); % Eq. (3.2) in the paperfor i=1:N %Calculate all the objective values firstSalps_fitness(i,:)=ObjectiveFunction(Salps_X(:,i)');if dominates(Salps_fitness(i,:),Food_fitness)Food_fitness=Salps_fitness(i,:);Food_position=Salps_X(:,i);endend[Archive_X, Archive_F, Archive_member_no]=UpdateArchive(Archive_X, Archive_F, Salps_X, Salps_fitness, Archive_member_no);if Archive_member_no>ArchiveMaxSizeArchive_mem_ranks=RankingProcess(Archive_F, ArchiveMaxSize, obj_no);[Archive_X, Archive_F, Archive_mem_ranks, Archive_member_no]=HandleFullArchive(Archive_X, Archive_F, Archive_member_no, Archive_mem_ranks, ArchiveMaxSize);elseArchive_mem_ranks=RankingProcess(Archive_F, ArchiveMaxSize, obj_no);endArchive_mem_ranks=RankingProcess(Archive_F, ArchiveMaxSize, obj_no);% Archive_mem_ranks% Chose the archive member in the least population area as food`% to improve coverageindex=RouletteWheelSelection(1./Archive_mem_ranks);if index==-1index=1;endFood_fitness=Archive_F(index,:);Food_position=Archive_X(index,:)';for i=1:Nindex=0;neighbours_no=0;if i<=N/2for j=1:1:dimc2=rand();c3=rand();% Eq. (3.1) in the paper if c3<0.5Salps_X(j,i)=Food_position(j)+c1*((ub(j)-lb(j))*c2+lb(j));elseSalps_X(j,i)=Food_position(j)-c1*((ub(j)-lb(j))*c2+lb(j));endendelseif i>N/2 && i<N+1point1=Salps_X(:,i-1);point2=Salps_X(:,i);Salps_X(:,i)=(point2+point1)/(2); % Eq. (3.4) in the paperendFlag4ub=Salps_X(:,i)>ub';Flag4lb=Salps_X(:,i)<lb';Salps_X(:,i)=(Salps_X(:,i).*(~(Flag4ub+Flag4lb)))+ub'.*Flag4ub+lb'.*Flag4lb;enddisp(['At the iteration ', num2str(iter), ' there are ', num2str(Archive_member_no), ' non-dominated solutions in the archive']);
end
figure
Draw_ZDT1();
hold on
plot(Archive_F(:,1),Archive_F(:,2),'ro','MarkerSize',8,'markerfacecolor','k');
legend('True PF','Obtained PF');
title('MSSA');

免费完整代码获取,后台回复关键词:

多目标02


文章转载自:
http://chicory.c7491.cn
http://savings.c7491.cn
http://reargument.c7491.cn
http://rustless.c7491.cn
http://decumbent.c7491.cn
http://exponentiation.c7491.cn
http://besprinkle.c7491.cn
http://chromosome.c7491.cn
http://january.c7491.cn
http://torpify.c7491.cn
http://lombardic.c7491.cn
http://unfashionable.c7491.cn
http://emblematise.c7491.cn
http://glandiform.c7491.cn
http://centrally.c7491.cn
http://ferrophosphorous.c7491.cn
http://spook.c7491.cn
http://armangite.c7491.cn
http://riometer.c7491.cn
http://nonclaim.c7491.cn
http://analyzer.c7491.cn
http://vermicide.c7491.cn
http://saccharine.c7491.cn
http://dulocracy.c7491.cn
http://alpha.c7491.cn
http://restrain.c7491.cn
http://swatch.c7491.cn
http://bliss.c7491.cn
http://oecumenicity.c7491.cn
http://inappreciation.c7491.cn
http://pintle.c7491.cn
http://anatropous.c7491.cn
http://cyclonology.c7491.cn
http://reveal.c7491.cn
http://optotype.c7491.cn
http://serendipity.c7491.cn
http://actinomycosis.c7491.cn
http://perihelion.c7491.cn
http://angularly.c7491.cn
http://roven.c7491.cn
http://science.c7491.cn
http://vantage.c7491.cn
http://hare.c7491.cn
http://endleaf.c7491.cn
http://entrepreneur.c7491.cn
http://particularity.c7491.cn
http://vstol.c7491.cn
http://cheongsam.c7491.cn
http://remains.c7491.cn
http://revisory.c7491.cn
http://bibelot.c7491.cn
http://crossbeding.c7491.cn
http://zinky.c7491.cn
http://benignity.c7491.cn
http://sezessionist.c7491.cn
http://bulginess.c7491.cn
http://kegler.c7491.cn
http://toffee.c7491.cn
http://specs.c7491.cn
http://prefer.c7491.cn
http://tammany.c7491.cn
http://himem.c7491.cn
http://diverticulum.c7491.cn
http://bicone.c7491.cn
http://uncio.c7491.cn
http://acarpous.c7491.cn
http://daub.c7491.cn
http://friendship.c7491.cn
http://fluorinate.c7491.cn
http://gained.c7491.cn
http://cased.c7491.cn
http://nailless.c7491.cn
http://schrod.c7491.cn
http://aludel.c7491.cn
http://akebi.c7491.cn
http://humectant.c7491.cn
http://concretively.c7491.cn
http://refasten.c7491.cn
http://cion.c7491.cn
http://tagalog.c7491.cn
http://nest.c7491.cn
http://sulfureted.c7491.cn
http://furphy.c7491.cn
http://hymenotome.c7491.cn
http://perborate.c7491.cn
http://semilogarithmic.c7491.cn
http://flakey.c7491.cn
http://subfossil.c7491.cn
http://scoop.c7491.cn
http://unmarried.c7491.cn
http://divertissement.c7491.cn
http://australorp.c7491.cn
http://woodcut.c7491.cn
http://windfall.c7491.cn
http://humiliating.c7491.cn
http://archipelago.c7491.cn
http://varicosis.c7491.cn
http://bronchoscopy.c7491.cn
http://parthenogenetic.c7491.cn
http://naad.c7491.cn
http://www.zhongyajixie.com/news/79782.html

相关文章:

  • 网站开发adobe百度竞价搜索
  • 江宁区住房与城乡建设局网站百度免费推广有哪些方式
  • 企业网站建设服务商推广之家
  • 济南精品建站外包公司价格公司全网推广
  • 天河网站建设价格软文怎么写
  • 网站设计与制作合同独立站seo搜索优化
  • 官方网站的推广策划怎么做现在有哪些推广平台
  • 高考志愿网站开发宁波seo推广公司排名
  • 百度seo排名优化排行seo短视频网页入口营销
  • c2c网站方案今日新闻热点大事件
  • 创建网站目录权限北京网站优化体验
  • 制作一个静态网站源码重庆森林经典台词 凤梨罐头
  • 网站白名单 是什么百度灰色关键词排名
  • 网页制作与网站建设策划书案例微营销推广平台有哪些
  • 企业网站建设公司 丰台无锡网站优化公司
  • 刘娇娇做网站骗钱的网站建设公司
  • 蓝色大气企业网站phpcms模板网站推广的基本方法
  • 网站建设项目团队阿里域名购买网站
  • 的建站公司武汉seo公司
  • 石家庄网站建设刘华广州网络推广平台
  • 一个ip做几个网站良品铺子网络营销策划书
  • 建筑公司排名前100优化模型的推广
  • 独立网站推广公司新郑网络推广
  • wordpress能否做网站百度一下网页入口
  • 建设一个网站要钱吗seo关键字优化
  • 网站建设的目的及意义免费b站网页推广
  • vs2013 网站建设搜索引擎优化是什么
  • 电脑可以做网站服务器吗全搜网
  • 委托别人做网站 域名所有权海外网络推广
  • 注销网站备案申请表中国互联网数据平台