The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
2k views

Roulette Wheel Selection for Genetic Algorithm in Java

I am implementing a roulette wheel selection method for a genetic algorithm. My question, in essence, is pretty simple but I can't wrap my mind around it. In my fitness function, if an answer is ...
2
votes
1answer
732 views

How should roulette wheel selection be organized for non-sorted population in genetic algorithm?

My question is linked with this one: Roulette-wheel selection in Genetic algorithm. Population needs to be sorted first? If we don't sort the population what is the way of organizing roulette wheel ...
1
vote
3answers
1k views

Roulette wheel selection for function minimization

This question answers pseudocode for roulette wheel selection. But it's for maximization problem. But my problem is to minimize the value of fitness function. That means, individuals with low fitness ...
2
votes
4answers
1k views

Roulette wheel selection, finding pocket without sorting

I am currently attempting to implement a java roulette wheel selection (see http://en.wikipedia.org/wiki/Fitness_proportionate_selection). My problem comes after finding the relative fitness for ...
1
vote
0answers
246 views

Timing function for “Wheel of Fortune” style ticker

I'm trying to create a function that changes a label's text. I want it in a "Wheel of Fortune" style where the text changes really quickly at first but slows down over time, then stops at the final ...
1
vote
2answers
656 views

Solve crossword puzzle with genetic algorithm, fitness, mutation

I'm trying hard to do a lab for school. I'm trying to solve a crossword puzzle using genetic algorithms. Problem is that is not very good (it is still too random) I will try to give a brief ...
5
votes
1answer
3k views

Genetic Algorithm - what is steady state selection?

I'm doing a final year project on genetic algorithms - specifically of the Dawkins Weasel type. I've done roulette selection and tournament selection, still to do steady state selection, but I'm not ...
4
votes
2answers
847 views

Roulette selection function for a genetic algorithm

So I've written a roulette selection function for my genetic algorithm which follows: public String tournament(float fitness, Chromosome pop[], int selection) { // roulette if (selection == ...
4
votes
3answers
3k views

Architecture of chatroulette

Could somebody explain to me the architecture behind chatroulette? I was thinking about a similar project that would only implement Audio support (for starters). Is the best way to set this up a flash ...
9
votes
7answers
9k views

GA written in Java

I am attempting to write a Genetic Algorithm based on techniques I had picked up from the book "AI Techniques for Game Programmers" that uses a binary encoding and fitness proportionate selection ...
1
vote
1answer
394 views

Roulette Wheel selection with a SQL query

I am implementing a roulette wheel selection, and I would like to keep as much code as possible in SQL. My attempt has yielded the query below. $1 is a random variable of the same range as weight I ...
1
vote
1answer
1k views

Efficient Implementation of Fitness-Proportionate “Roulette” Selection

I am currently writing a keyboard layout optimization algorithm in C (such as the one designed by Peter Klausler) and I want to implement a fitness-proportionate selection as described here (PDF ...
7
votes
3answers
5k views

Roulette-wheel selection in Genetic algorithm. Population needs to be sorted first?

In a genetic algorithm, when selecting members for crossover using roulette-wheel selection method, does the population first need to be sorted by fitness rank? The possibilities seem to be: sort ...
7
votes
12answers
19k views

Roulette wheel selection algorithm

Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand how to read this math notation.I want General algorithm to this.
12
votes
9answers
9k views

Roulette Selection in Genetic Algorithms

Can anyone provide some pseudo code for a roulette selection function? How would I implement this: I don't really understand how to read this math notation. I never took any probability or ...