国内也有不错的开源项目,只是感觉后劲不足,亟须自然科学基金赞助

本文主要是介绍国内也有不错的开源项目,只是感觉后劲不足,亟须自然科学基金赞助,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

http://cs.cug.edu.cn/teacherweb/lichanghe/pages/EAlib.html大笑


如果上面的服务器下载EAlib源代码有问题,可以参考这个网盘的

Welcome to Changhe Li's EAlib Page


About Me News Research Teaching Publications EAlib Downloads Funding Links

LIBRARY OF EVOLUTIONARY ALGORITHMS

  • Description
  • Library structure
  • Instruction to add new algorithms and problems
  • Algorithms collected so far(October 2011)
  • Problems collected so far(October 2011)
  • Coming algorithms
  • Download
  • Contributors

This is an open sources project with the aim of providing the source codes of state-of-the-art algorithms, problems, and algorithms' performance metrics for researchers in the area of evolutionary computation. Based on this framework, you can easily implement your ideas and add the codes into this library. More important, you will be also able to compare with other state-of-the-art algorithms without implementing them under a fair environment. In addition, this library will be updated as time goes on when new algorithms and problems come to this research area. Anyone, who want to contribute to this project, is welcome, and please contact me without hesitation.

This project is totally for research purpose. As a researcher in the area of evolutionary computation, I know how bad it is if there is no source codes available for the algorithm you want to compare with your own method. It may spend weeks to find out why the results you got are not as good as the results provided in the original paper. The worst case is that you just can not figure out the reason even though you spend weeks. There are many reasons: not enough details available of the algorithm, different implementations, using different languages, the stochastic characteristic of EAs ..., etc. Therefore, here comes the motivation to build up a standard platform for you to carry out experiments. I believe that this project would clear the way for your research and save you a lot of time. Well, in a word, I would like to encourage you to take part in this project and let's together make the research life easy, comfortable, and efficient for you and someone else.


This library was implemented in C++ language, it has three basic components: algorithms, problems, and algorithms' performance evaluation. The class structure is as follows:

Algorithms:

This module provides basic templates for variant EAs. The module includes three basic classes: the Chromosome,Individual, and Population classes. Functions and descriptions of them are as follows.

The Chromosome class: The most fundamental class, represents a solution of a problem and is able to take composite encoding scheme,e.g., A b 1.23 ! & true 59. It was designed based on problems' representation.

The Individual class: A simple template individual class, provides some basic operations for a single individual with variant individuals of different algorithms.

The Population class: A template population class, provides some basic operations for a population


Problems:

This module collects some benchmark problems used for the performance evaluation for EAs in different research topics. Currently, it has two types of problems, function optimization problems (FOPs) and dynamic optimization problems(DOPs).

Problem .................................................... the base class for all problems
|
+BenchmarkFunction ........................................ the base class for all function optimization problems
| |
| +FSphere ................................................ the Sphere function f(x)=x*x
+DynamicProblem ........................................... the base class for dynamic optimization problems(DOPs)
|
+DynamicContinuous ...................................... the base class for DOPs in continuous space
|
+RealDB G.............................................. the base class for GDBG benchmark
| |
| +CompositionDBG ..................................... the Composition problems in GDBG 
| |
| +RotationDBG ......................................... the Rotation problems in GDBG
|
+MovingPeak ............................................ the Moving Peaks problem
|
+DF1 ................................................... the DF1 problem

Performance metrics:

PerformSingleObj ...............................................the performance measurement for single objective optimization problem

Other major files:

Global.h ........................................................ class for global variables 
StructDec.h ..................................................... struct declaration file
newran.h ........................................................ random number generator: From library http://www.robertnz.net/nr02doc.htm


Instruction for new algorithms and new problems

To add a new algorithm:

Take a simple PSO algorithm as an example, you need to develop two classes, which are: PSOIndividual: public Individual and PSOPopulation: public Population<PSOIndividual> , then follow the steps described in the beginning of the main function in main.cpp file to run the new algorithm.

To add a new problem:

If a new problem is to be added into this lib, you need to implement it under a proper position in the Problem class. In addition, encoding and decoding work must be done in the Chromosome.cpp file if a new solution representation is needed to describe the problem.

Each algorithm and problem has a unique ID, please assign an ID to an algorithm or a problem when they are added.

Development:

You can develop your algorithms in both Visual studio 2010 in Windows and CODE::BLOCK in Ubuntu, corresponding project files are EAlib.sln and EAlib.cbp, respectively. A makefile is also available to compile the program. If you have any question about this library, please contact Changhe Li with changhe.lw@gmail.com.


Algorithms collected so far:

This lib has included some algorithms from different research areas, which are listed below:

  • Function optimization:
    • Particle swarm optimization
      1. SPSO07: C. Maurice, Standard PSO 2007, http://www.particleswarm.info/Programs.html, 2007.
      2. SLPSO: Changhe Li, Shengxiang Yang and Trung Thanh Nguyen, A Self-Learning Particle Swarm Optimizer for Global Optimization Problems. accepted by IEEE TSMCB.
    • Differential evolution
      1. Storn, R. and Price, K. (1997), Differential Evolution - A Simple and Efficient Heuristic for Global Optimization over Continuous Spaces, Journal of Global Optimization, 11, pp. 341--359.
      2. Thomsen R (2004) Multimodal optimization using crowding-based differential evolution. In: Proceedings of the 2004 IEEE congress on evolutionary computation, pp 1382--1389. IEEE Press, Portland, OR, USA
    • Genetic algorithms
    • Hybrid algorithms
  • Dynamic optimization
    • Particle swarm optimization
      1. CPSO: S. Yang and C. Li, A clustering particle swarm optimizer for locating and tracking multiple optima in dynamic environments, IEEE Trans. Evol. Comput., vol. 14, no. 6, pp. 959-974, 2010.
      2. CPSOR: C.Li and S.Yang A General Framework of Multi-Population Methods with Clustering in Undetectable Dynamic Environments , accepted by IEEE TEC
    • Differential evolution
    • Genetic algorithms
    • Hybrid algorithms
      1. Lung R, Dumitrescu D (2010) Evolutionary swarm cooperative optimization in dynamic environments. Nat Comput Int J 9(1): 83--94.
  • Multi-Objective optimization

Problems collected so far:

  • Function optimization problems(FOPs) :Sphere, Sphere_Noisy, S_Sphere, R_Sphere, RS_Sphere, S_Sphere_CEC05, Rastrigin, Rastrigin_Noisy, S_Rastrigin, R_Rastrigin, RS_Rastrigin, S_Rastrigin_CEC05, RS_Rastrigin_CEC05, Weierstrass, RS_Weierstrass, R_Weierstrass, RS_Weierstrass_CEC05, Griewank, R_Griewank, RS_Griewank, Ackley, Ackley_Noisy, S_Ackley, R_Ackley, RS_Ackley, RS_Ackley_Bound_CEC05, Step, Quartic_Noisy, Scaffer_F6, Rosenbrock, S_Rosenbrock, S_Rosenbrock_CEC05, Schwefel_2_22, Schwefel_2_22_Noisy, S_Schwefel_2_22, R_Schwefel_2_22, RS_Schwefel_2_22, Schwefel, Schwefel_Noisy, S_Schwefel, R_Schwefel, RS_Schwefel, Schwefel_1_2, Schwefel_1_2_Noisy, S_Schwefel_1_2, S_Schwefel_1_2_Noisy, R_Schwefel_1_2, RS_Schwefel_1_2, S_Schwefel_1_2_CEC05, S_Schwefel_1_2_Noisy_CEC05, Schwefel_2_21, Penalized_1, Penalized_2, Noncont_Rastrigin, RS_Elliptic_CEC05, Elliptic, Com, R_Com, Com_CEC05, H_Com_CEC05, H_Com_Noisy_CEC05, RH_Com_CEC05, RH_Com_NarrowBasin_CEC05, RH_Com_Bound_CEC05, M_global1, M_global2, M_global3, M_global4, M_global5, S_Sphere_CEC08, Schwefel_2_21_CEC08, S_Rosenbrock_CEC08, S_Rastrigin_CEC08, S_Griewank_CEC08, S_Ackley_CEC08, RW_Gear_Train, RW_ParEst_FMSoundWaves.
  • Dynamic optimization problems(DOPs): CompositionDBG_DOP, RotationDBG_DOP, MovingPeak_DOP, DF1_DOP, Binary_DOP.

Please find the description of the above problems in the corresponding files in the library. 

Coming algorithms:

  1. CPSO-Hk: F. van den Bergh and A. P. Engelbrech, "A cooperative approach to particle swarm optimization," IEEE Trans. Evol. Comput., vol. 8, pp. 225-239, 2004.
  2. FIPS: R. Mendes, J. Kennedy, and J. Neves, "The fully informed particle swarm: Simpler, Maybe better," IEEE Trans. Evol. Comput., vol. 8, pp. 204-210, 2004.
  3. CLSPO: J. J. Liang, A. K. Qin, P. N. Suganthan, and S. Baska, "Comprehensive learning particle swarm optimizer for global optimization of multimodal functions," IEEE Trans. Evol. Comput., vol. 10, no. 3, pp. 281-295, 2006.
  4. APSO:Z. Zhan, J. Zhang, Y. Li, and H. S. Chung, "Adaptive particle swarm optimization," IEEE Trans. Syst., Man, Cybern. B: Cybern., vol. 39, pp. 1362-1381, 2009.
  5. FPSO: M. A. M. de Oca, T. Stutzle, M. Birattari, and M. Dorigo, "Frankenstein's pso: A composite particle swarm optimization algorithm," IEEE Trans. Evol. Comput., vol. 13, no. 5, pp. 1120-1132, 2009.
  6. JADE: J. Zhang and A. C. Sanderson, "JADE: adaptive differential evolution with optional external archive," IEEE Trans. Evol. Comput., vol. 13, no. 5, pp. 945-958, 2009.
  7. HRCGA:C. Garcia-Martinez, M. Lozano, F. Herrera, D. Molina, and A. M.Sanchez, "Global and local real-coded genetic algorithms based on parent-centric crossover operators," Europ. J. Oper. Res., vol. 185, pp.1088-1113, 2008.
  8. rSPSO: Bird, S.; Xiaodong Li; , "Using regression to improve local convergence," Evolutionary Computation, 2007. CEC 2007. IEEE Congress on , vol., no., pp.592-599, 25-28 Sept. 2007
  9. SPSO: Parrott, D.; Xiaodong Li; , "Locating and tracking multiple dynamic optima by a particle swarm model using speciation," Evolutionary Computation, IEEE Transactions on , vol.10, no.4, pp.440-458, Aug. 2006.
  10. mQSO,mCPSO: Blackwell, T.; Branke, J.; , "Multiswarms, exclusion, and anti-convergence in dynamic environments," Evolutionary Computation, IEEE Transactions on , vol.10, no.4, pp.459-472, Aug. 2006


To download the EAlib, please click here(updated 20 July 2012).


Contributors:

Ming Yang



last updated: 09/02/2013 00:12:41

这篇关于国内也有不错的开源项目,只是感觉后劲不足,亟须自然科学基金赞助的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/676052

相关文章

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

如何用Docker运行Django项目

本章教程,介绍如何用Docker创建一个Django,并运行能够访问。 一、拉取镜像 这里我们使用python3.11版本的docker镜像 docker pull python:3.11 二、运行容器 这里我们将容器内部的8080端口,映射到宿主机的80端口上。 docker run -itd --name python311 -p

阿里开源语音识别SenseVoiceWindows环境部署

SenseVoice介绍 SenseVoice 专注于高精度多语言语音识别、情感辨识和音频事件检测多语言识别: 采用超过 40 万小时数据训练,支持超过 50 种语言,识别效果上优于 Whisper 模型。富文本识别:具备优秀的情感识别,能够在测试数据上达到和超过目前最佳情感识别模型的效果。支持声音事件检测能力,支持音乐、掌声、笑声、哭声、咳嗽、喷嚏等多种常见人机交互事件进行检测。高效推

在cscode中通过maven创建java项目

在cscode中创建java项目 可以通过博客完成maven的导入 建立maven项目 使用快捷键 Ctrl + Shift + P 建立一个 Maven 项目 1 Ctrl + Shift + P 打开输入框2 输入 "> java create"3 选择 maven4 选择 No Archetype5 输入 域名6 输入项目名称7 建立一个文件目录存放项目,文件名一般为项目名8 确定

金融业开源技术 术语

金融业开源技术  术语 1  范围 本文件界定了金融业开源技术的常用术语。 本文件适用于金融业中涉及开源技术的相关标准及规范性文件制定和信息沟通等活动。

安全管理体系化的智慧油站开源了。

AI视频监控平台简介 AI视频监控平台是一款功能强大且简单易用的实时算法视频监控系统。它的愿景是最底层打通各大芯片厂商相互间的壁垒,省去繁琐重复的适配流程,实现芯片、算法、应用的全流程组合,从而大大减少企业级应用约95%的开发成本。用户只需在界面上进行简单的操作,就可以实现全视频的接入及布控。摄像头管理模块用于多种终端设备、智能设备的接入及管理。平台支持包括摄像头等终端感知设备接入,为整个平台提

Vue3项目开发——新闻发布管理系统(六)

文章目录 八、首页设计开发1、页面设计2、登录访问拦截实现3、用户基本信息显示①封装用户基本信息获取接口②用户基本信息存储③用户基本信息调用④用户基本信息动态渲染 4、退出功能实现①注册点击事件②添加退出功能③数据清理 5、代码下载 八、首页设计开发 登录成功后,系统就进入了首页。接下来,也就进行首页的开发了。 1、页面设计 系统页面主要分为三部分,左侧为系统的菜单栏,右侧

K8S(Kubernetes)开源的容器编排平台安装步骤详解

K8S(Kubernetes)是一个开源的容器编排平台,用于自动化部署、扩展和管理容器化应用程序。以下是K8S容器编排平台的安装步骤、使用方式及特点的概述: 安装步骤: 安装Docker:K8S需要基于Docker来运行容器化应用程序。首先要在所有节点上安装Docker引擎。 安装Kubernetes Master:在集群中选择一台主机作为Master节点,安装K8S的控制平面组件,如AP

SpringBoot项目是如何启动

启动步骤 概念 运行main方法,初始化SpringApplication 从spring.factories读取listener ApplicationContentInitializer运行run方法读取环境变量,配置信息创建SpringApplication上下文预初始化上下文,将启动类作为配置类进行读取调用 refresh 加载 IOC容器,加载所有的自动配置类,创建容器在这个过程

Maven创建项目中的groupId, artifactId, 和 version的意思

文章目录 groupIdartifactIdversionname groupId 定义:groupId 是 Maven 项目坐标的第一个部分,它通常表示项目的组织或公司的域名反转写法。例如,如果你为公司 example.com 开发软件,groupId 可能是 com.example。作用:groupId 被用来组织和分组相关的 Maven artifacts,这样可以避免