A genetic algorithm (GA) is a search heuristic that mimics the process of natural evolution.

learn more… | top users | synonyms

1
vote
1answer
24 views

MATLAB Optimization Error

My Genetic Algorithm optimization script on Matlab runs, but at the end produces the following message: "Optimization terminated: average change in the penalty fitness value less than options.TolFun ...
-1
votes
0answers
22 views

Need help to forecast this time series

There is a time series concerning with some behaviour which I would like to undisclosed. I have been forecasting that with software products like GMDH Shell and GeneXprotools and they give reliable ...
-2
votes
0answers
26 views

Which is a good automatic summarisation algorithm for news articles? [closed]

Is supervised learning, with a large training corpora, a better approach, unsupervised ranking algorithms or genetic algorithms?
1
vote
2answers
49 views

Evolutionary algorithm - Traveling Salesman

I try to solve this problem using genetic algorithm and get difficult to choose the fitness function. My problem is a little differnt than the original Traveling Salesman Problem ,since the ...
0
votes
1answer
39 views

Constraints in MATLAB Genetic Algorithm - Not Just Input Constraints

Good day I'm working with Genetic Algorithms in MATLAB using the Global Optimization Toolbox. I'm quite experienced in this area. My question is as follows: How do I specify constraints that are not ...
-8
votes
0answers
38 views

using genetic algorithm to allocate students in balanced teams [closed]

I have to write a program in java by using genetic algorithm to produce balanced teams based on some students grades or skills It's the first time for using GA and I feel I am lost and I don't ...
1
vote
1answer
67 views

Genetic algorithm libraries for Scala [closed]

Which are mature, maintained and flexible open source genetic algorithm (GA) libraries for Scala? Mature meaning that it is quite feature complete and bug free, ideally well documented. Maintained ...
2
votes
1answer
44 views

Filling a rectangle with unequal sized circles with genetic algorithm

Yesterday I came up with a question that I have no answer for it. We have a random sized rectangle and we also have some circles with different radius, which we got limited amount of each of those ...
2
votes
1answer
47 views

TSPTW with Genetic Algorithm

I am implementing TSPTW(Travelling salesman with time window) with Genetic Algorithm with 81 cities, I applied the following steps: mutation prob=0.03 population size=100 -Generate random population ...
0
votes
2answers
51 views

Recurrent Neural Network Training and Test Sets

I'm constructing an rNN optimized by a GA. This happens to be my first project in this area, so I got confused by certain things. It would be great if someone could help me out with understanding ...
-3
votes
0answers
45 views

Programming image watermarking by using genetic algorithhm [closed]

I am working on image watermarking using genetic algorithm and I have a problem with how I can implement the tournament selection in choosing the chromosome representation. (Of course in Matlab) I ...
1
vote
1answer
65 views

How can I represent a number as a chromosome in a genetic algorithm?

I want to use a genetic algorithm to solve a simple system of two linear equations with two variables. This is mainly to help me get a better understanding of how they work. Everything seems ...
2
votes
2answers
131 views

Genetic Algorithms and multi-objectives optimization on PYTHON : libraries/tools to use? [closed]

I am scanning the internet to find libraries available to use GA with potential development for multi-objective algorithms like NSGAII for PYTHON. Do you have any suggestion? Here is what I have so ...
0
votes
2answers
50 views

What is the correct way to execute selection procedure in a genetic algorithm?

I am working on a genetic algorithm for symmetric TSP in VB.NET. I want to know what is the correct way go execute selection procedure. There seems to be at least two different possibilities: 1) ...
0
votes
2answers
53 views

Data structure to represent a solution of 2D material cutting?

I am working on the cutting problem, and I need to figure out how to represent the solution. For example look at this image, where the gray areas are unused material. Can you please recommend me ...
0
votes
1answer
44 views

TSP/ TSPTW with different seed

I would like to ask is it possible to run the GA with different seed to generate the initial solution and make analysis ?. However, at the beginning of applying GA, you have to produce number of ...
0
votes
1answer
52 views

Genetic algorithms: fitness function not working properly

I have a binary dataset of (m x n) m instances and n features with m >> n. And there is a target Variable or Class attribute, also binary. I want to do feature selection using genetic algorithm. I ...
1
vote
1answer
73 views

Any Genetic Algorithms module for python 3.x?

I'm currently looking for a mature GA library for python 3.x. But the only GA library can be found are pyevolve and pygene. They both support python 2.x only. I'd appreciate if anyone could help.
0
votes
2answers
83 views

Making of Genetic algorithm

Im just learning about genetic algorithm when i was given a task to design a genetic algorithm that learns rules that predicts if a person will vote yes or no given a data set. I've been reading in ...
1
vote
1answer
30 views

Crossover different length genotypes

E.g. I have two random representatives 1 6 8 9 0 3 4 7 5 and 3 6 5 7 8 5 What are the ways to crossover them? Add some empty numbers (or operations or sth) on the end of every genotype so ...
1
vote
0answers
106 views

Using Matlab GA for optimization of expensive fitness function with Constraints

I am using Genetic Algorithm in Matlab for optimization of a computationally expensive fitness function which also has constraints . I am right now imposing constraints in the form of penalty in to ...
8
votes
1answer
119 views

How to deal with crossover when sequence matters?

How does one go about crossing over two parents when the children must have a particular ordering? For example, when applying genetic algorithms to the Travelling Salesman Problem on a fixed graph of ...
0
votes
1answer
61 views

Testing one set of parameters one times using genetic algorithm in Matlab

I'm using the genetic algorithm (function ga in Matlab) to find optimum values of parameters of some algorithm. Calculating quality of this algorithm for one set of parameters is time-consuming, but ...
1
vote
3answers
78 views

I get a segmentation fault on this code at a different line every time. C++

I am writing a genetic algorithm program. I use Linux (OS), c++ (language) and g++ (compiler). The following code generates a seg fault. The problem is that it sometimes run 50+ times and some times ...
1
vote
1answer
67 views

What does this memory map mean when I compile my program?

I am using Ubuntu Lucid Lynx, use Kate to code my c++ programs and use g++ to compile them. I am currently writing a Genetic Algorithm program and all works fine except I get a memory map 80% of the ...
2
votes
1answer
117 views

Single point ordered crossover in matlab

I need to create ordered crossover in matlab. I have parents P1 and P2 as follow: P1=[1 2 3 4 ; 0 1 1 0], P2=[3 2 1 4 ; 0 1 0 0]. First 1 [at place P1(2,2) and P2(2,2)] is my crossover point. now I ...
1
vote
1answer
195 views

In a genetic algorithm is roulette wheel selection the same as Monte Carlo method?

After reading a paper they mention the Monte Carlo method for selecting fittest chromosomes. Is this the same as roulette wheel selection? Direct quote The same initial population of individuals ...
1
vote
1answer
79 views

An algorithm for summarizing content

I am looking at summarizing content on a website i am planning on building. Instead of pages and pages of content I would prefer to offer them a summary of each topic. I have come across some idea on ...
0
votes
1answer
43 views

mpi sending message to randomly selected node

I am trying to implement distributed genetic algorithm (island model) using MPI. All the nodes will repeatedly generate new populations and will exchange best individuals after every k iterations.I ...
-1
votes
1answer
92 views

Computational complexity of PSO,GA and ACO [closed]

Could anyone give me the computational complexity of Particle Swarm Optimization,Genetic Algorithm and Ant Colony Optimization? Thanks!
0
votes
2answers
90 views

genetic algorithm handling illegal strings

I am trying to implement genetic algorithm for maximizing a function of n variables such that each variable is in the range [-n, n]. In order to make crossover less complex, while generating initial ...
3
votes
2answers
72 views

genetic algorithm handling negative fitness values

I am trying to implement genetic algorithm for maximizing a function of n variables. However the problem is that the fitness values can be negative and I am not sure about how to handle negative ...
-1
votes
1answer
136 views

genetic algorithm binary encoding negative integers

I am trying to implement genetic algorithm for maximizing a function of n integer variables x1..xn where each variable belongs to the range [-n, n]. I am thinking of using binary encoding for ...
-3
votes
1answer
33 views

Genetic Algorithme with string c++ [closed]

I'm doing a project which is to have a initial string and with a genetic algorithm I have to find the original string. I do not know where to start? Can someone help me?
0
votes
0answers
141 views

big buildings' elevator (number and work process)

Yesterday when i was high, i thought about big buildings and their elevators. Number and way of work of elevators was the problem. When i think about the worst case: (for the tallest building in ...
0
votes
1answer
85 views

Stochastic Universal Sampling: Selecting Pairs for Crossover and Mutation

I'm a little confused on selecting chromosome pairs with Stochastic Universal Sampling. I understand how you can select offspring from a given population using this method. What I'm confused about, is ...
1
vote
2answers
133 views

which encoding to use for genetic algorithm?

I want to code a genetic algorithm in C for optimizing a function of 10 variables (x1 to x10). However I am not able to figure out which encoding I should use. I have mostly seen binary encoding being ...
2
votes
1answer
168 views

Python genetic algorithm for binary number

I'm asked to make a genetic algorithm with the goal to determine an 8 bit string with the the most 1's and 0's. The eval function should return the number of changes plus 1. So for example 00000000 ...
1
vote
1answer
68 views

Is there way to detect formula with help of genetic algorithm?

I am trying to find how two images (let's say "image1" and "image2") match to each other. There are several parameters calculated for each possible position of "image2" relative to "image1". And I ...
0
votes
3answers
72 views

Accessing ArrayList<ArrayList<SomeObject>> elements

I have an ArrayList of ArrayLists where i need to find a simple way of accessing the elements, to make it easier to understand i have drawed my goal of what i want to achieve: As seen on the image ...
1
vote
1answer
35 views

doing away with encoding in a genetic algorithmic impementation

I was wondering if encoding in a genetic algorithm is really necessary , I mean let's say I have a program that is supposed to implement a GA to guess a word a user inputs,. I don't see the point in ...
1
vote
2answers
120 views

How to normalize fitness scores? [closed]

I'm evolving a population of neural networks and I've been struggling with normalizing fitness scores (to values in range 0 to 1), so that the number on its own is most meaningful. The issue is that ...
0
votes
0answers
65 views

Compare Images By Color Using a Genetic Algorithm

I am right now in a serious problem, I need to compare images of flowers (carnations) using a genetic algorithm, the program must determine which variety does the flower belongs to (until now I am ...
0
votes
1answer
46 views

High Dimensional function optimization for slow functions

I am not really sure if this is the right place to ask this, but since it didnt seem to be a perfect fit for the mathematics SX either, I decided to post here. I have function with a very high ...
1
vote
1answer
300 views

Relating input to output with Neural Network and optimizing inputs using Genetic Algorithm

I'm currently doing proces optimization for laser cutting - in MATLAB. I am trying to relate the process parameters with the cutting quality such as e.g.: Inputs (Process parameters) Cutting speed ...
0
votes
1answer
176 views

Evolving a Neural Network in Matlab to approximate a function [closed]

I need to learn how to evolve a neural network to approximate a function (e.g sin, XOR). I just want to see a working example using a genetic algorithm (Encoding, Genotype, etc). I am interested in ...
-1
votes
1answer
91 views

Matlab's gamultiobj plots

In matlab's multiobjective genetic algorithm GUI there is an option for plotting the pareto front but the plot is only 2D; since i'm minimizing three objective functions, i need a 3D plot. Is there a ...
0
votes
2answers
275 views

Genetic algorithm crossover [closed]

I have a question regarding genetic algorithm so: Should crossover be carried out differently, e.g. only at “gene” boundaries. Should representations include “noise” to improve performance – or does ...
0
votes
0answers
43 views

Implementation of any Circuit Placement Algorithm to compare with our novel PSO placement alogrithm

I have designed and implemented a novel algorithm based on Particle Swarm Optimization, to places circuit gates (for example c17 or c432 circuit) on a 2D grid to minimize the total interconnect length ...
0
votes
0answers
74 views

How to use nested function in main program as constraint for a Genetic Algorithm that optimizes the main?

I have a main program called loadflowthat computes quantities a,b,c and d using nested functions. I have to minimize loadflowusing the simple GA in matlab. How can I pass the nested functions that ...

1 2 3 4 5 11