paper-with-me

Papers

Improving Time and Memory Efficiency of Genetic Algorithms by Storing Populations as Minimum Spanning Trees of Patches

2023-06-29 · Maxim Buzdalov

In many applications of evolutionary algorithms the computational cost of applying operators and storing populations is comparable to the cost of fitness evaluation. Furthermore, by knowing what exactly has changed in an individual by an operator, it is possible to recompute fitness value much more efficiently than from scratch. The associated time and memory improvements have been available for simple evolutionary algorithms, few specific genetic algorithms and in the context of gray-box optimization, but not for all algorithms, and the main reason is that it is difficult to achieve in algorithms using large arbitrarily structured populations. This paper makes a first step towards improving this situation. We show that storing the population as a minimum spanning tree, where vertices correspond to individuals but only contain meta-information about them, and edges store structural differences, or patches, between the individuals, is a viable alternative to the straightforward implementation. Our experiments suggest that significant, even asymptotic, improvements -- including execution of crossover operators! -- can be achieved in terms of both memory usage and computational costs.

📄 PDF Abstract BibTeX arXiv:2306.16686

Code (1)

mbuzdalov/patch-based-ga 공식 구현

Tasks

Evolutionary Algorithms

Similar Papers 제목 키워드 기반

Liquid State Genetic Programming

2023-12-05 · Mihai Oltean

A new Genetic Programming variant called Liquid State Genetic Programming (LSGP) is proposed in this paper. LSGP is a hybrid method combining a dynamic memory for storing the inputs (the liquid) and a Genetic Programming…

Benchmarking

The Struggle for Existence: Time, Memory and Bloat

2023-02-06 · John C Stevenson

Combining a spatiotemporal, multi-agent based model of a foraging ecosystem with linear, genetically programmed rules for the agents' behaviors results in implicit, endogenous, objective functions and selection algorithm…

SAGA: Synthesis Augmentation with Genetic Algorithms for In-Memory Sequence Optimization

2024-06-14 · Andey Robins, Mike Borowczak

The von-Neumann architecture has a bottleneck which limits the speed at which data can be made available for computation. To combat this problem, novel paradigms for computing are being developed. One such paradigm, know…

Memory-efficient Reinforcement Learning with Value-based Knowledge Consolidation

2022-05-22 · Qingfeng Lan, Yangchen Pan, Jun Luo, A. Rupam Mahmood

Artificial neural networks are promising for general function approximation but challenging to train on non-independent or non-identically distributed data due to catastrophic forgetting. The experience replay buffer, a …

Deep Reinforcement Learningreinforcement-learningReinforcement LearningReinforcement Learning (RL)

Multi-threaded Memory Efficient Crossover in C++ for Generational Genetic Programming

2020-09-22 · W. B. Langdon

C++ code snippets from a multi-core parallel memory-efficient crossover for genetic programming are given. They may be adapted for separate generation evolutionary algorithms where large chromosomes or small RAM require …

C++ codeEvolutionary Algorithms