Tagged Questions
The genetic tag has no wiki summary.
7
votes
2answers
190 views
Genetic algorithm and Tetris
Im creating a Tetris player using genetic algorithms, and facing some issues. I've read a lot of related works, but they don't give me enough details on the GA.
The problem is that my agent seems to ...
4
votes
2answers
170 views
C++ genetic programming: Invoking a linker/compiler, executing the compiled program and piping input / output
This is a generic question, and although I'm pretty sure some of it's parts have been answered I want opinions rather than a broad discussion. I intend to do a master thesis on evolutionary ...
3
votes
3answers
360 views
Genetic Programming and Search Algorithms
Is Genetic Programming currently capable of evolving one type of search algorithm into another? F
or example, has any experiment ever ever bred / mutated BubbleSort from QuickSort (see ...
3
votes
9answers
3k views
Python Canvas
I'm looking for a Python library for creating canvases for manipulating gemetric shapes. Specifically I need the ability to create arbitrary polygons and place them on the canvas, the polygons need ...
2
votes
2answers
106 views
Genetic Algorithm roulette wheel selection
I am having issues understanding the algorithm. Here is the most popular one seen online
for all members of population
sum += fitness of this individual
end for
for all members of population
...
2
votes
4answers
93 views
Genetic Algorithm selection and crossover
I have been some research on genetic algorithms for a project in my ai class but I am a little confused as what seems to be the traditional algorithm
quick algorithm review ...
2
votes
3answers
265 views
Is it possible to break md5 hash using genetic algorithms?
With a knowledge of how md5 works, would it be possible to use a population based algorithm such as genetic programming to break simple passwords?
For examples, given a md5 hash for a string that is ...
2
votes
1answer
149 views
Genetic Algorithm Implementation for a specific problem
I am a data mining student and I have a problem that I was hoping that you guys could give me some advice on:
I need a genetic algo that optimizes the weights between three inputs. The weights need ...
2
votes
1answer
224 views
Genetic Algorithm open source library with all the trimmings e.g. cellularGA features
I would like to implement a GA-based feature selection program for an SGI UV system (cores=512, shared memory=4TB) which operates as thus:
(Feature selection is the process by which the smallest ...
1
vote
3answers
135 views
How to do a Fitness Function
I'm working on a project which will have a selected set of data and each data will have different attributes. I will need to use a fitness function to choose the data that best matches my selected ...
1
vote
1answer
65 views
input array in R
Hello please find below mentioned code. what i want is to add values to my array on the basis of certain condition checks which i want to undertake. if the values are eligible then they should add to ...
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
3answers
907 views
How to plot XY graph in C#?
I am developing an application in C# which deals with specific genetic algorithm problem. The execution of the algorithm provides output parameters that are required to draw a chart.The graphic chart ...
0
votes
0answers
62 views
Genetic TSP in Java
I have a problem with my genetic TSP. I keep on loosing best specimens in population, even though they are stored in different array, and are replaced only if there are better specimens in the ...
0
votes
1answer
44 views
Linear Genetic Programming - Error Landscape Issue
I'm exploring the world of linear genetic programming and I find myself stuck with this one issue. It seems to me that the error landscape of even the simplest problem is extremely non smooth. In ...
0
votes
0answers
17 views
Breaking down genetic algorithm search into subproblems
I have lately been wondering about the pros and cons of breaking down a GA search into subproblems.
Consider a superset of the travelling salesman problem, in which the salesman must first solve a ...
0
votes
0answers
85 views
Image processing using genetic algorithm [closed]
How to write the fitness function in image processing problem??
0
votes
1answer
38 views
Alias for class with many typeparams in other class body (C#)
I declare a class with many typeparams:
public class A<T1, T2, T3, T4, T5> {}
How can I use alias like this:
public class B<T1, T2, T3, T4, T5>
{
using T = A<T1, T2, T3, T4, ...
0
votes
0answers
234 views
C++ Genetic Algorithm outputting information error
Right, hey guys, i could really do with some help on my genetic algorithm here.It's driving me insane. Right, the problem i have is as follows
The genetic algorithm is not complete yet, i've just ...
0
votes
1answer
233 views
Mutation Problem - Clojure
having trouble changing an element of my function represented as a list.
code for random function:
(defn makerandomtree-10
[pc maxdepth maxwidth fpx ppx]
(if-let [output
(if (and (< (rand) ...
-1
votes
1answer
22 views
Producing Diverse solutions using genetic algorithms [closed]
I want to use genetic algorithms to find a family of diverse good solutions,I mean I need good solutions not optimal ones,and I need a set of diverse candidates,Any suggestions?
-1
votes
2answers
292 views
Genetic Algorithms in Python [closed]
What genetic algorithm modules in Python are available? Does anybody have experiences with those?
-2
votes
1answer
77 views
Find the minimum of “y=x*x” using genetic algorithm in Matlab [closed]
Would somebody help me please in this question. I'm new in Matlab... And it's a bit hard for me to understand how to create and use genetic algorithm in Matlab.
If anybody could help to write some ...
-2
votes
2answers
261 views
genetic algorithm library
Does someone know a genetic algorithm library? Programming language is not so important. Could be C#, Python, Java, ... I would need it to find optimal decision tree solutions.
best, US