Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
4k 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 ...
7
votes
6answers
5k 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 ...
5
votes
3answers
4k 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 ...
4
votes
2answers
438 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
9answers
11k 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.
3
votes
1answer
868 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 ...
3
votes
3answers
1k 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 ...
2
votes
3answers
185 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
3answers
52 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 ...
1
vote
0answers
132 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
311 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 ...
1
vote
1answer
292 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
957 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 ...