1
vote
1answer
49 views
Improving Q-Learning
Hello
I am currently using Q-Learning to try to teach a bot how to move in a room filled with walls/obstacles. It must start in any place in the room and get to the goal state(thi …
3
votes
5answers
227 views
how to perform bitwise operation on floating point numbers
i tried this:
float a = 1.4123;
a = a & (1 << 3);
i get a compiler error saying that operand to & cannot be of type float.
when i do:
float a = 1.4123;
a = (int) …
1
vote
3answers
219 views
how to solve linear equations using genetic algorithm
hello i want to solve a system of n linear equations containing n variables using genetic algorithm.
i am having difficulty in defining the crossover operation as the solution may …
0
votes
0answers
55 views
how to solve linear equations using genetic algorithm [closed]
Possible Duplicate:
how to solve linear equations using genetic algorithm
hello i want to solve a system of n linear equations containing n variables using genetic algorit …
2
votes
6answers
142 views
How to represent a path for a genetic algorithm?
I want to use a GA to determine the optimal path from A to B, satisfying certain conditions (length, number of turns, etc.)
An example of a path is:
Up 4, Left 8, Down 3, Right 3, …
1
vote
5answers
149 views
How to find the best parameters for a Genetic Algorithm?
Some Genetic Algorithm frameworks, such as http://www.aforgenet.com/ requires many parameters, such as mutation rate, population size, etc
There is universal best numbers for such …
17
votes
12answers
969 views
cool project to use a genetic algorithm for?
I'm looking for a practical application to use a genetic algorithm for. Some things that have thought of are:
Website interface optimization
Vehicle optimization with a physics s …
-4
votes
1answer
80 views
MATLAB: Knowledge extraction in signals classification with genetic algorithm
I'm doing project in genetic algorithm
(knowledge extraction in signals classification with genetic algorithm)
I want the MATLAB coding for signals classification in genetic algor …
10
votes
8answers
463 views
When to use Genetic Algorithms and when to use Neural Networks?
Is there a rule of thumb or set of examples to determine when Genetic Algorithms versus when to use Neural Networks to solve a problem?
I know there are cases in which you can hav …
2
votes
1answer
234 views
MATLAB- passing a function handle parameter into another function as a handle
Working on an assignment involving Genetic Algorithms (loads of headaches, loads of fun). I need to be able to test differing crossover methods and differing mutation methods, to c …
6
votes
4answers
231 views
Genetic Algorithm 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 proporti …
16
votes
19answers
994 views
What problems have you solved using genetic algorithms/genetic programming?
Genetic algorithms (GA) and genetic programming (GP) are interesting areas of research.
I'd like to know about specific problems you - the SO reader - have solved using GA/GP and …
3
votes
5answers
393 views
What Genetic Algorithm/Programming library do you use?
I've been hooked on GAlib (for C++) and I love it's modularity in that I can build my own genomes ... but I'd like the library to parametrize the selection and mating functions - w …
1
vote
2answers
244 views
Intelligent code-completion? Is there AI to write code by learning?
I am asking this question because I know there are a lot of well-read CS types on here who can give a clear answer.
I am wondering if such an AI exists (or is being researched/dev …
3
votes
3answers
153 views
What algorithm should I use for “genetic AI improvement”
First of all: This is not a question about how to make a program play Five in a Row. Been there, done that.
Introductory explanation
I have made a five-in-a-row-game as a framewo …
