Refinement Action-Based Framework for Utilization of Softcomputing in Inductive Learning

Total Page:16

File Type:pdf, Size:1020Kb

Refinement Action-Based Framework for Utilization of Softcomputing in Inductive Learning Czech Technical University in Prague Faculty of Electrical Engineering Doctoral Thesis July 2013 Ing. et ing. Petr Buryan Czech Technical University in Prague Faculty of Electrical Engineering Department of Cybernetics Refinement Action-Based Framework For Utilization Of Softcomputing In Inductive Learning Doctoral Thesis Ing. et ing. Petr Buryan Prague, July 2013 Ph.D. Programme: Electrical Engineering and Information Technology Branch of study: Artificial Intelligence and Biocybernetics Supervisor: doc. ing. Filip Železný, PhD. Supervisor-Specialist: ing. Jiří Kubalík, PhD. Acknowledgments I gratefully acknowledge the help and support generously provided by my supervisor Filip Železný and supervisor-specialist Jiří Kubalík. Abstract In this thesis we describe a novel approach to application of Evolutionary Algorithms (EAs) into the field of Inductive Logic Programming (ILP). One of the main issues of ILP is the time complexity that comes out of the large size of ILP search space. Improving the search efficiency is therefore the main objective of this thesis. To reach this, EAs were used in this work as they have proven to be efficient solvers for many optimization problems in many applications before. The target of the thesis is to design a system that would use EAs to speed up the search process in ILP while also enabling to use full potential of ILP including the possibilities of first order logic as well as the refinement operators. In the same time we aim at developing a system that would not be too problem-specific and would be both user and implementation friendly. Unlike the traditional approaches that focus on evolving populations of logical clauses, our refinement-based approach uses the evolutionary optimization process to search for sequences of refinement actions that iteratively adapt the initial working clause so that it changes into a well classifying clause. Utilization of context-sensitive refinements (adaptations) helps the search operations to produce mostly syntactically correct concepts and enables using available background knowledge both for efficiently restricting the search space and for directing the search. To efficiently use the context information about the dataset we propose a specific structure to represent it and also an algorithm that automatically induces this structure from data prior to the start of the learning phase. The fact that the user is not required to manually define the language bias by writing down the semantic and syntactic restrictions speeds up the whole process of solving ILP tasks and gives our system the user friendliness that is needed for applying this one system to various ILP problems. In general, the EA-based ILP system presented in this work is more flexible, less problem-specific and the framework can be easily used with any stochastic search algorithm within the ILP domain. Experimental results on several data sets verify the usefulness of this approach. The benchmarking shows that our system is capable to achieve similar or even better results than other state-of-the-art ILP systems. Abstrakt V této práci se věnujeme novému přístupu využití technik Evolučních Algoritmů (EA) pro řešení problémů v rámci Induktivního Logického Programování (ILP). Jedním z hlavních problémů ILP je časová náročnost řešení úloh vyplývající ze značné rozsáhlosti prohledávaného prostoru. Zefektivnění prohledávání je tak hlavní motivací této práce. Jako prostředek byly zvoleny EA, protože se již v mnoha předešlých případech ukázaly být efektivním nástrojem pro prohledávání ve velkých stavových prostorech. Jejich použití v ILP nicméně není zcela jednoduché, zejména vzhledem k rozdílnosti ILP a úloh, pro které byly EA primárně určeny. Cílem práce je navrhnout systém, který by použil EA k urychlení řešení ILP úloh a zároveň nebyl příliš úzce zaměřený a umožnil využít všech možností ILP poskytovaných jazykem predikátové logiky prvního řádu (FOL) i refinement operátory. Současně je naší snahou vyvinout systém, který nebude příliš úzce zaměřen na úzkou skupinu dat a bude také uživatelsky i implementačně přívětivý. Na rozdíl od ostatních aplikací EA v ILP pracuje náš přístup vždy s jednou klauzulí popsanou přímo v FOL a využívá evoluční optimalizace k jejímu upravování. Pomocí EA náš algoritmus iterativně hledá takové sekvence refinement operátorů, kterými upraví pracovní klauzuli tak, aby se zlepšila její kvalita posuzovaná zejména z hlediska klasifikační přesnosti. Kromě tohoto náš přístup využívá i kontextové informace v podobě syntaktických a sémantických restrikcí lokálně omezujících použití jednotlivých refinement operátorů. Práce přímo v FOL vede k jednoduché reprezentaci problému a dovoluje jednoduše využít dostupnou doménovou znalost (background knowledge). Díky kontextu je pak systém schopen soustředit prohledávání na syntakticky správné koncepty. Pro efektivní využití kontextové znalosti při prohledávání jsme navíc v naší práci navrhli specifickou strukturu jejího uchování a algoritmus, který je schopen sestavit tuto strukturu z dostupných dat ještě před vlastním začátkem ILP hledání. Skutečnost, že syntaktická i sémantická omezení jsou automaticky indukována z dat bez nutnosti jejich manuální definice uživatelem, urychluje celý proces řešení ILP problému a zároveň poskytuje našemu systému dostatečnou flexibilitu pro použití v různých ILP úlohách. Výsledky experimentů provedených s několika ILP problémy potvrdily užitečnost tohoto přístupu a srovnání s výsledky jiných prací ukázalo, že náš algoritmus je schopen dosáhnout stejných či dokonce lepších výsledků než jiné stateoftheart algoritmy. Navržený přístup tak lze využít k efektivnímu řešení ILP úloh. Kromě toho, že je plně schopen využít možností FOL, je i univerzálnější, snadno může být použit k řešení různých ILP problémů a zároveň umožňuje jednoduše využít i jiné stochastické algoritmy než EA. Contents 1 Introduction ................................................................................................................................................. 1 1.1 Motivations and Goals ......................................................................................................................... 1 1.2 Contribution ......................................................................................................................................... 2 1.3 Outline of the Thesis ............................................................................................................................ 4 1.4 Related Work ....................................................................................................................................... 4 2 Relational Learning ..................................................................................................................................... 6 2.1 Machine Learning ................................................................................................................................ 6 2.2 Attribute-value learning ....................................................................................................................... 8 2.2.1 Propositionalization ........................................................................................................................ 8 2.3 Relational Learning ............................................................................................................................. 9 2.3.1 ILP and Graph Mining: Two Important RL Frameworks ............................................................. 11 2.3.2 Graphs and Graph Mining ............................................................................................................ 12 2.3.3 Relational Learning – Examples of Applications ......................................................................... 14 2.3.4 Reference Literature on RL .......................................................................................................... 17 2.4 Summary ............................................................................................................................................ 17 3 Inductive Logic Programming .................................................................................................................. 18 3.1 Introduction ........................................................................................................................................ 18 3.2 Basic ILP Definitions and Principles ................................................................................................. 20 3.3 Basic ILP Setting ............................................................................................................................... 21 3.3.1 Prolog Notation ............................................................................................................................. 22 3.3.2 ILP - An Example ......................................................................................................................... 22 3.4 Solving standard ILP Tasks ............................................................................................................... 23 3.4.1 Basic Search in ILP ...................................................................................................................... 24 3.5 Popular ILP Systems .......................................................................................................................... 34 3.6 ILP Systems and Stochastic Search ..................................................................................................
Recommended publications
  • Metaheuristics1
    METAHEURISTICS1 Kenneth Sörensen University of Antwerp, Belgium Fred Glover University of Colorado and OptTek Systems, Inc., USA 1 Definition A metaheuristic is a high-level problem-independent algorithmic framework that provides a set of guidelines or strategies to develop heuristic optimization algorithms (Sörensen and Glover, To appear). Notable examples of metaheuristics include genetic/evolutionary algorithms, tabu search, simulated annealing, and ant colony optimization, although many more exist. A problem-specific implementation of a heuristic optimization algorithm according to the guidelines expressed in a metaheuristic framework is also referred to as a metaheuristic. The term was coined by Glover (1986) and combines the Greek prefix meta- (metá, beyond in the sense of high-level) with heuristic (from the Greek heuriskein or euriskein, to search). Metaheuristic algorithms, i.e., optimization methods designed according to the strategies laid out in a metaheuristic framework, are — as the name suggests — always heuristic in nature. This fact distinguishes them from exact methods, that do come with a proof that the optimal solution will be found in a finite (although often prohibitively large) amount of time. Metaheuristics are therefore developed specifically to find a solution that is “good enough” in a computing time that is “small enough”. As a result, they are not subject to combinatorial explosion – the phenomenon where the computing time required to find the optimal solution of NP- hard problems increases as an exponential function of the problem size. Metaheuristics have been demonstrated by the scientific community to be a viable, and often superior, alternative to more traditional (exact) methods of mixed- integer optimization such as branch and bound and dynamic programming.
    [Show full text]
  • A Discipline of Evolutionary Programming 1
    A Discipline of Evolutionary Programming 1 Paul Vit¶anyi 2 CWI, Kruislaan 413, 1098 SJ Amsterdam, The Netherlands. Email: [email protected]; WWW: http://www.cwi.nl/ paulv/ » Genetic ¯tness optimization using small populations or small pop- ulation updates across generations generally su®ers from randomly diverging evolutions. We propose a notion of highly probable ¯t- ness optimization through feasible evolutionary computing runs on small size populations. Based on rapidly mixing Markov chains, the approach pertains to most types of evolutionary genetic algorithms, genetic programming and the like. We establish that for systems having associated rapidly mixing Markov chains and appropriate stationary distributions the new method ¯nds optimal programs (individuals) with probability almost 1. To make the method useful would require a structured design methodology where the develop- ment of the program and the guarantee of the rapidly mixing prop- erty go hand in hand. We analyze a simple example to show that the method is implementable. More signi¯cant examples require theoretical advances, for example with respect to the Metropolis ¯lter. Note: This preliminary version may deviate from the corrected ¯nal published version Theoret. Comp. Sci., 241:1-2 (2000), 3{23. 1 Introduction Performance analysis of genetic computing using unbounded or exponential population sizes or population updates across generations [27,21,25,28,29,22,8] may not be directly applicable to real practical problems where we always have to deal with a bounded (small) population size [9,23,26]. 1 Preliminary version published in: Proc. 7th Int'nl Workshop on Algorithmic Learning Theory, Lecture Notes in Arti¯cial Intelligence, Vol.
    [Show full text]
  • Evolutionary Algorithms
    Evolutionary Algorithms Dr. Sascha Lange AG Maschinelles Lernen und Naturlichsprachliche¨ Systeme Albert-Ludwigs-Universit¨at Freiburg [email protected] Dr. Sascha Lange Machine Learning Lab, University of Freiburg Evolutionary Algorithms (1) Acknowlegements and Further Reading These slides are mainly based on the following three sources: I A. E. Eiben, J. E. Smith, Introduction to Evolutionary Computing, corrected reprint, Springer, 2007 — recommendable, easy to read but somewhat lengthy I B. Hammer, Softcomputing,LectureNotes,UniversityofOsnabruck,¨ 2003 — shorter, more research oriented overview I T. Mitchell, Machine Learning, McGraw Hill, 1997 — very condensed introduction with only a few selected topics Further sources include several research papers (a few important and / or interesting are explicitly cited in the slides) and own experiences with the methods described in these slides. Dr. Sascha Lange Machine Learning Lab, University of Freiburg Evolutionary Algorithms (2) ‘Evolutionary Algorithms’ (EA) constitute a collection of methods that originally have been developed to solve combinatorial optimization problems. They adapt Darwinian principles to automated problem solving. Nowadays, Evolutionary Algorithms is a subset of Evolutionary Computation that itself is a subfield of Artificial Intelligence / Computational Intelligence. Evolutionary Algorithms are those metaheuristic optimization algorithms from Evolutionary Computation that are population-based and are inspired by natural evolution.Typicalingredientsare: I A population (set) of individuals (the candidate solutions) I Aproblem-specificfitness (objective function to be optimized) I Mechanisms for selection, recombination and mutation (search strategy) There is an ongoing controversy whether or not EA can be considered a machine learning technique. They have been deemed as ‘uninformed search’ and failing in the sense of learning from experience (‘never make an error twice’).
    [Show full text]
  • Evolutionary Programming Made Faster
    82 IEEE TRANSACTIONS ON EVOLUTIONARY COMPUTATION, VOL. 3, NO. 2, JULY 1999 Evolutionary Programming Made Faster Xin Yao, Senior Member, IEEE, Yong Liu, Student Member, IEEE, and Guangming Lin Abstract— Evolutionary programming (EP) has been applied used to generate new solutions (offspring) and selection is used with success to many numerical and combinatorial optimization to test which of the newly generated solutions should survive problems in recent years. EP has rather slow convergence rates, to the next generation. Formulating EP as a special case of the however, on some function optimization problems. In this paper, a “fast EP” (FEP) is proposed which uses a Cauchy instead generate-and-test method establishes a bridge between EP and of Gaussian mutation as the primary search operator. The re- other search algorithms, such as evolution strategies, genetic lationship between FEP and classical EP (CEP) is similar to algorithms, simulated annealing (SA), tabu search (TS), and that between fast simulated annealing and the classical version. others, and thus facilitates cross-fertilization among different Both analytical and empirical studies have been carried out to research areas. evaluate the performance of FEP and CEP for different function optimization problems. This paper shows that FEP is very good One disadvantage of EP in solving some of the multimodal at search in a large neighborhood while CEP is better at search optimization problems is its slow convergence to a good in a small local neighborhood. For a suite of 23 benchmark near-optimum (e.g., to studied in this paper). The problems, FEP performs much better than CEP for multimodal generate-and-test formulation of EP indicates that mutation functions with many local minima while being comparable to is a key search operator which generates new solutions from CEP in performance for unimodal and multimodal functions with only a few local minima.
    [Show full text]
  • Neuroevolution Strategies for Episodic Reinforcement Learning ∗ Verena Heidrich-Meisner , Christian Igel
    J. Algorithms 64 (2009) 152–168 Contents lists available at ScienceDirect Journal of Algorithms Cognition, Informatics and Logic www.elsevier.com/locate/jalgor Neuroevolution strategies for episodic reinforcement learning ∗ Verena Heidrich-Meisner , Christian Igel Institut für Neuroinformatik, Ruhr-Universität Bochum, 44780 Bochum, Germany article info abstract Article history: Because of their convincing performance, there is a growing interest in using evolutionary Received 30 April 2009 algorithms for reinforcement learning. We propose learning of neural network policies Available online 8 May 2009 by the covariance matrix adaptation evolution strategy (CMA-ES), a randomized variable- metric search algorithm for continuous optimization. We argue that this approach, Keywords: which we refer to as CMA Neuroevolution Strategy (CMA-NeuroES), is ideally suited for Reinforcement learning Evolution strategy reinforcement learning, in particular because it is based on ranking policies (and therefore Covariance matrix adaptation robust against noise), efficiently detects correlations between parameters, and infers a Partially observable Markov decision process search direction from scalar reinforcement signals. We evaluate the CMA-NeuroES on Direct policy search five different (Markovian and non-Markovian) variants of the common pole balancing problem. The results are compared to those described in a recent study covering several RL algorithms, and the CMA-NeuroES shows the overall best performance. © 2009 Elsevier Inc. All rights reserved. 1. Introduction Neuroevolution denotes the application of evolutionary algorithms to the design and learning of neural networks [54,11]. Accordingly, the term Neuroevolution Strategies (NeuroESs) refers to evolution strategies applied to neural networks. Evolution strategies are a major branch of evolutionary algorithms [35,40,8,2,7].
    [Show full text]
  • A Note on Evolutionary Algorithms and Its Applications
    Bhargava, S. (2013). A Note on Evolutionary Algorithms and Its Applications. Adults Learning Mathematics: An International Journal, 8(1), 31-45 A Note on Evolutionary Algorithms and Its Applications Shifali Bhargava Dept. of Mathematics, B.S.A. College, Mathura (U.P)- India. <[email protected]> Abstract This paper introduces evolutionary algorithms with its applications in multi-objective optimization. Here elitist and non-elitist multiobjective evolutionary algorithms are discussed with their advantages and disadvantages. We also discuss constrained multiobjective evolutionary algorithms and their applications in various areas. Key words: evolutionary algorithms, multi-objective optimization, pareto-optimality, elitist. Introduction The term evolutionary algorithm (EA) stands for a class of stochastic optimization methods that simulate the process of natural evolution. The origins of EAs can be traced back to the late 1950s, and since the 1970’s several evolutionary methodologies have been proposed, mainly genetic algorithms, evolutionary programming, and evolution strategies. All of these approaches operate on a set of candidate solutions. Using strong simplifications, this set is subsequently modified by the two basic principles of evolution: selection and variation. Selection represents the competition for resources among living beings. Some are better than others and more likely to survive and to reproduce their genetic information. In evolutionary algorithms, natural selection is simulated by a stochastic selection process. Each solution is given a chance to reproduce a certain number of times, dependent on their quality. Thereby, quality is assessed by evaluating the individuals and assigning them scalar fitness values. The other principle, variation, imitates natural capability of creating “new” living beings by means of recombination and mutation.
    [Show full text]
  • Analysis of Evolutionary Algorithms
    Why We Do Not Evolve Software? Analysis of Evolutionary Algorithms Roman V. Yampolskiy Computer Engineering and Computer Science University of Louisville [email protected] Abstract In this paper, we review the state-of-the-art results in evolutionary computation and observe that we don’t evolve non-trivial software from scratch and with no human intervention. A number of possible explanations are considered, but we conclude that computational complexity of the problem prevents it from being solved as currently attempted. A detailed analysis of necessary and available computational resources is provided to support our findings. Keywords: Darwinian Algorithm, Genetic Algorithm, Genetic Programming, Optimization. “We point out a curious philosophical implication of the algorithmic perspective: if the origin of life is identified with the transition from trivial to non-trivial information processing – e.g. from something akin to a Turing machine capable of a single (or limited set of) computation(s) to a universal Turing machine capable of constructing any computable object (within a universality class) – then a precise point of transition from non-life to life may actually be undecidable in the logical sense. This would likely have very important philosophical implications, particularly in our interpretation of life as a predictable outcome of physical law.” [1]. 1. Introduction On April 1, 2016 Dr. Yampolskiy posted the following to his social media accounts: “Google just announced major layoffs of programmers. Future software development and updates will be done mostly via recursive self-improvement by evolving deep neural networks”. The joke got a number of “likes” but also, interestingly, a few requests from journalists for interviews on this “developing story”.
    [Show full text]
  • Evolutionary Algorithms and Their Applications to Engineering Problems
    Neural Computing and Applications https://doi.org/10.1007/s00521-020-04832-8 (0123456789().,-volV)(0123456789().,- volV) REVIEW ARTICLE Evolutionary algorithms and their applications to engineering problems 1 2 Adam Slowik • Halina Kwasnicka Received: 27 November 2018 / Accepted: 5 March 2020 Ó The Author(s) 2020 Abstract The main focus of this paper is on the family of evolutionary algorithms and their real-life applications. We present the following algorithms: genetic algorithms, genetic programming, differential evolution, evolution strategies, and evolu- tionary programming. Each technique is presented in the pseudo-code form, which can be used for its easy implementation in any programming language. We present the main properties of each algorithm described in this paper. We also show many state-of-the-art practical applications and modifications of the early evolutionary methods. The open research issues are indicated for the family of evolutionary algorithms. Keywords Nature-inspired methods Á Genetic algorithm Á Genetic programming Á Differential evolution Á Evolution strategy Á Evolutionary programming Á Real-life applications 1 Introduction This paper is a state-of-the-art paper which topic is connected mainly with evolutionary algorithms (EAs) such These days, in the area of soft computing research we can as GA, GP, DE, ES, and EP. (In the other paper [6], we observe a strong pressure to search for new optimization have presented swarm intelligence algorithms (SIAs) such techniques which are based on nature. Figure 1 presents as ant colony optimization (ACO), particle swarm opti- some approaches in optimization techniques with a con- mization (PSO), and others in which social collaboration centration on evolutionary approaches.
    [Show full text]
  • Evolutionary Theories of Aging"
    Article ID: WMC003275 ISSN 2046-1690 The Germ-soma Conflict Theory of Aging and Death: Obituary to the "Evolutionary Theories of Aging" Corresponding Author: Prof. Kurt Heininger, Professor, Department of Neurology, Heinrich Heine University Duesseldorf - Germany Submitting Author: Prof. Kurt Heininger, Professor, Department of Neurology, Heinrich Heine University Duesseldorf - Germany Article ID: WMC003275 Article Type: Original Articles Submitted on:20-Apr-2012, 01:51:59 PM GMT Published on: 20-Apr-2012, 05:38:59 PM GMT Article URL: http://www.webmedcentral.com/article_view/3275 Subject Categories:AGING Keywords:Aging, Reproduction, Evolution, Darwinian demon, Resources How to cite the article:Heininger K. The Germ-soma Conflict Theory of Aging and Death: Obituary to the "Evolutionary Theories of Aging" . WebmedCentral AGING 2012;3(4):WMC003275 Copyright: This is an open-access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited. Source(s) of Funding: No funding Competing Interests: No competing interests Additional Files: References WebmedCentral > Original Articles Page 1 of 139 WMC003275 Downloaded from http://www.webmedcentral.com on 30-Apr-2012, 10:35:59 AM The Germ-soma Conflict Theory of Aging and Death: Obituary to the "Evolutionary Theories of Aging" Author(s): Heininger K Abstract “cheater” phenotypes that are defective to carry the cost of death at reproductive events are less fit under conditions of feast and famine cycles and have a high risk to go extinct. Tracing both the genomic and Regarding aging, the scientific community persists in a physiological “fossil record” and the phenotypic pattern state of collective schizophrenia.
    [Show full text]
  • On Comparison Between Evolutionary Programming Network Based Learning and Novel Evolution Strategy Algorithm-Based Learning
    Proceedings of the ICEECE December 22-24 (2003), Dhaka, Bangladesh On Comparison between Evolutionary Programming Network based Learning and Novel Evolution Strategy Algorithm-based Learning M. A. Khayer Azad, Md. Shafiqul Islam and M. M. A. Hashem1 Department of Computer Science and Engineering Khulna University of Engineering and Technology Khulna 9203, Bangladesh ABSTRACT This paper presents two different evolutionary systems - Evolutionary Programming Network (EPNet) [1] and Novel Evolutions Strategy (NES) Algorithm [2]. EPNet does both training and architecture evolution simultaneously, whereas NES does a fixed network and only trains the network. Five mutation operators proposed in EPNet to reflect the emphasis on evolving ANN’s behaviors. Close behavioral links between parents and their offspring are maintained by various mutations, such as partial training and node splitting. On the other hand, NES uses two new genetic operators - subpopulation-based max-mean arithmetical crossover and time-variant mutation. The above-mentioned two algorithms have been tested on a number of benchmark problems, such as the medical diagnosis problems (breast cancer, diabetes, and heart disease). The results and the comparison between them are also present in this paper. 1. INTRODUCTION optimal architecture has been found. The other is the simultaneous evolution of both architectures and Now-a-days, neural network is used in. many weights. It is clear that the evolution of pure applications such as robotics, missile projection, and architectures has difficulties in evaluating fitness rocket even in cooker. A number of algorithms are accurately. As a result, the evolution would be developed to train the network and evolve the inefficient. architecture.
    [Show full text]
  • A Brief Survey on Intelligent Swarm-Based Algorithms for Solving Optimization Problems 49
    DOI: 10.5772/intechopen.76979 ProvisionalChapter chapter 4 A Brief Survey onon IntelligentIntelligent Swarm-BasedSwarm-Based AlgorithmsAlgorithms for Solving OptimizationOptimization ProblemsProblems Siew Mooi Lim and Kuan Yew Leong Additional information isis available atat thethe endend ofof thethe chapterchapter http://dx.doi.org/10.5772/intechopen.76979 Abstract This chapter presents an overview of optimization techniques followed by a brief survey on several swarm-based natural inspired algorithms which were introduced in the last decade. These techniques were inspired by the natural processes of plants, foraging behaviors of insects and social behaviors of animals. These swam intelligent methods have been tested on various standard benchmark problems and are capable in solving a wide range of optimization issues including stochastic, robust and dynamic problems. Keywords: optimization, artificial intelligence, swarm intelligence, nature-inspired and bio-inspired computation 1. Introduction Optimization is a form of mathematical procedure for determining optimal allocation of scare resources. In recent years, the optimization area has received enormous attention primarily due to the rapid emerging science and technology in computing, communication, engineering, environment and society. Several types of optimization problems exist. Two important classes of objects for most optimization problems are limited resources and activities. Resources include land size, plant capacity and sales force. Whereas production activities are like produce stainless steel, low carbon steel or high carbon steel; how we solve them will depend on the circumstances to determine the best condition of activity levels using the resources available. All optimization problems have an objective function, constraints, and choice variables which will lead to the improvement in application or audience.
    [Show full text]
  • Covariance Matrix Adapted Evolution Strategy (CMAES)
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Directory of Open Access Journals ISSN: 2229-6956(ONLINE) ICTACT JOURNAL ON SOFT COMPUTING, OCTOBER 2012, VOLUME: 03, ISSUE: 01 APPLICATION OF RESTART COVARIANCE MATRIX ADAPTATION EVOLUTION STRATEGY (RCMA-ES) TO GENERATION EXPANSION PLANNING PROBLEM K. Karthikeyan1, S. Kannan2, S. Baskar3, and C. Thangaraj4 1,2Department of Electrical and Electronics Engineering, Kalasalingam University, India E-mail: [email protected] and [email protected] 3Department of Electrical and Electronics Engineering, Thiagarajar College of Engineering, India E-mail: [email protected] 4Anna University of Technology Chennai, India E-mail: [email protected] Abstract The Covariance Matrix Adaptation Evolution Strategy This paper describes the application of an evolutionary algorithm, (CMA-ES) is a robust stochastic evolutionary algorithm for Restart Covariance Matrix Adaptation Evolution Strategy (RCMA- difficult non-linear non-convex optimization problems [15]. The ES) to the Generation Expansion Planning (GEP) problem. RCMA- CMA-ES is typically applied to unconstrained or bounded ES is a class of continuous Evolutionary Algorithm (EA) derived from constraint optimization problems, and it efficiently minimizes the concept of self-adaptation in evolution strategies, which adapts the unimodal objective functions and is in particularly superior for covariance matrix of a multivariate normal search distribution. The ill-conditioned and non-separable problems [15], [16]. Anne original GEP problem is modified by incorporating Virtual Mapping Procedure (VMP). The GEP problem of a synthetic test systems for 6- Auger and Nikolaus Hansen showed that increasing the year, 14-year and 24-year planning horizons having five types of population size improves the performance of the CMA-ES on candidate units is considered.
    [Show full text]