Evolutionary algorithms (EAs) are inspired by the biological model of evolution and natural selection. In the natural world, evolution helps species adapt to their environments. Evolutionary algorithms are based on a simplified model of this biological evolution. To solve a particular problem we ...
0
votes
2answers
40 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
0answers
24 views
Generating the initial population within a genetic (evolutionary) algorithm
This is my first attempt at a genetic algorithm, I don't know yet what problems might arise, but I'm trying to avoid at least some of them.
I have included the initial population size (and growth if ...
1
vote
2answers
28 views
Trying to find an good data - representation for a genetic (evolutionary) algorithm, but I just can't imagine one
Disclaimer
First of all, this is for homework, so don't ask why it's so contrived, it is this way and it can only be this way. (I get a lot of "how about if you change something"), sorry ... I can't.
...
-1
votes
0answers
29 views
Genetic Programming for Operating System in C sharp [closed]
I've been looking genetic programming for simulation operating system like
cheddar in ada language or cpuss in C#. Anyone knows of good online resources? Wonder if there is a C# library out there for ...
1
vote
2answers
61 views
Literature on many-vs-many classifier
In the context of Multi-Class Classification (MCC) problem,
a common approach is to build final solution from multiple binary classifiers.
Two composition strategy typically mentioned are one-vs-all ...
0
votes
1answer
30 views
Evolving neural networks tutorials [closed]
I have been experimenting with neural networks in Java using some tutorials and happended to hit upon these :
Neural Bots and
Goopies
I want to try these out with help from decent tutorials (With ...
0
votes
1answer
42 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 ...
0
votes
1answer
114 views
Relationship between genetic representation and fitness function
As you know choosing a genetic representation is a part of building any Genetic Algorithm (GA). A mapping can be hence defined between the genotype space (problem solving space) and the phenotype ...
0
votes
0answers
54 views
Robocode out of memory error
I am attempting to write a simple robot that uses 2d ArrayLists that I can later manipulate to change the robots actions
The trouble I am having is that at the moment when I run the robot it runs for ...
-1
votes
3answers
85 views
Computer Program more intelligent that the programmer? Is it possible? [closed]
Today, I asked a psychologist how can you design an IQ-test to assess a man more intelligent than the designer? He answered me, the same way you can design a chess game program, the designer cannot ...
0
votes
0answers
102 views
using genetic evolution in ECJ?
We are using ECJ(Evolutionary Computation in java) for Grammatical evolution in our final year project. We are really stuck at some crucial point while using this framework. Our main Problems are:
How ...
1
vote
2answers
240 views
Elitism in GA: Should I let the elites be selected as parents?
I am a little confused by the elitism concept in Genetic Algorithm (and other evolutionary algorithms). When I reserve and then copy 1 (or more) elite individuals to the next generation,
Should I ...
1
vote
1answer
114 views
Number of decision variables vs objective space dimension?
Are these two different from each other?
In the context of optimization problems (esp. evolutionary optimization), I've encountered the term decision variables and as its definition and practice ...
2
votes
1answer
141 views
Algorithm: Maximizing profit in card game with m winning cards and n losing cards
Let's say a Casino (C) has a game which involves only one player and one dealer. The game is played with m+n cards, m are marked as winning cards and 'n' as losing cards.
Rules/Information regarding ...
1
vote
2answers
98 views
What is niching sheme?
I am currently reading a paper on using GA in constrained optimization problems. At some part, it is talking about applying niching scheme on the individuals (or the Pareto front they make).
It seems ...
2
votes
0answers
54 views
Anyone knows anything on intra-population effects?
For a project which I am doing I am planning to build an Asynchronous Cellular EA with Intra-Population Effects. This last bit (the intra-population effects) is what my question is about.
What I ...
6
votes
1answer
444 views
Course Scheduling Algorithms: why use of DFS or Graph coloring is not suggested?
I need to develop a Course Timetabling software which can allot timeslots and rooms efficiently. This is a curriculum based routine, not post-enrollment based. And efficiently means classes are ...
2
votes
2answers
117 views
Where can I find good and simple test functions for evolutionary algorithms?
I've started learning evolutionary algorithms (GA, PSO, ...) and I want to implement them in Matlab and play with different parameters to get a hold of the algorithms' structures and how they work.
...
0
votes
0answers
81 views
Implementing Flexible Neural Trees
I would like to implement a Flexible Neural Tree using the Probabilistic Incremental Program Evolution algorithm (PIPE) as described in this document.
I understand the concepts described in the ...
3
votes
1answer
75 views
Combine Values to Create Bunch of 100 [closed]
suppose I have one array having the values:
array(20,40,30,15,60,50,10)
Now what i want is to I need to create bunch of 100 or near to hundred.and create separate round for each set of 100(or near ...
0
votes
1answer
142 views
Is CMA-ES (mu, lambda) or (mu + lambda)?
I know the basic components required for a covariance matrix adaptation- evolutionary strategy, but I can't seem to find anywhere that explicitly states whether the selected children(lambda) replace ...
2
votes
4answers
213 views
Can evolutionary computation be a method of reinforcement learning?
I am working on a project, a simulated robot learns to do something by neuroevolution
So, where is evolutionary computation? Is it a method of reinforcement learning? Or a separate method of machine ...
2
votes
1answer
153 views
Difficulty Managing Data/Items with Dependencies for a Product Configurator
I am working on parsing some strings that contain a object information with some dependencies or requirements for the object.
This is for product configuration and the objects are the components that ...
0
votes
1answer
102 views
How to initialize Chromosomes in an Evolutionary Algorithm to solve an LP/ILP or general COS on real variables?
I am working on a Java framework for Optimization Problems. So far, I have implemented lp_solve and GLPK and therefore I can handle linear problems (LPs) and integer linear problems (ILPs). Now I want ...
0
votes
1answer
46 views
any one know how to implement a moran process in evolutionary game?
this is a article of http://www.mathematica-journal.com/data/uploads/2011/05/Voelkl.pdf, but I still have little idea how to transfer it into the java code?
6
votes
3answers
235 views
Is it possible for evolutionary algorithms to create machine code? [closed]
This is a question of general interest, as I am not trying to solve a specific problem. I have looked around to try to find some articles that cover this area, but am struggling to even put together ...
1
vote
2answers
112 views
Making tree of functions in C
I want to make a tree of functions in C, which would look like this:
http://scr.hu/5rq/vdja0
So basically I want the result to be like this: http://scr.hu/5rq/f04uu
where x is an variable which I ...
2
votes
3answers
585 views
NSGA-II ( Non- Dominating Sorting Algorithm )
I have studied about Non dominating sorting algorithtm (nsga-II).
Algorithm is given on this link .
http://church.cs.virginia.edu/genprog/images/2/2f/Nsga_ii.pdf
I want to know it's ...
0
votes
1answer
66 views
finding Flow shop scheduling fitness
I"m working with flow job scheduling issue. is there a mathematical equation to compute the fitness instead of the Gantt Chart ? thanks in advance.
1
vote
1answer
303 views
What is the main difference between the evolutionary algorithm 'approaches'?
So I'm reading on evolutionary algorithms and am confused.
What are the 'traditional' differences between evolutionary programming, evolutionary strategies and genetic algorithms as I believe in ...
0
votes
1answer
305 views
Adaptive vs Non Adaptive System
Assume there is a website that generates pages using dynamic technologies: ASP, JSP, etc.
In a non-adaptive website, I may have a code like if condition 1, then generate page A. If condition 2, ...
0
votes
1answer
61 views
Mutation for pipeline network optimization
I'm working on pipeline network optimization, and I'm representing the chromosomes as a string of numbers as following
example
chromosome [1] = 3 4 7 2 8 9 6 5
where, each number refers to well ...
1
vote
2answers
389 views
Benefits and implementation of crossover probability in genetic algorithm?
Can any one give an example of crossover probability? I really wonder to know what is the benefits of determining crossover probability in genetic algorithm or genetic programing.
20
votes
3answers
684 views
How to utilize Hebbian learning?
I want to upgrade my evolution simulator to use Hebb learning, like this one. I basically want small creatures to be able to learn how to find food. I achieved that with the basic feedforward ...
3
votes
4answers
209 views
Crossover function for genetic
I am writing a Time table generator in java, using AI approaches to satisfy the hard constraints and help find an optimal solution. So far I have implemented and Iterative construction (a ...
1
vote
2answers
109 views
What exactly is the purpose of using schemata in genetic algorithm?
How exactly is the schemata going to help genetic algorithm to get the optimal solution? Schema means template does that mean that every individual in the population will have the same schemata?
0
votes
1answer
100 views
Why does NSGAII (alg for Multiobjective Optimisation) always selects BOTH boundary points in crowding-distance-assigment part of algorithm?
Why does NSGA II (Multiobjective Optimisation) always selects BOTH boundary points in crowding-distance-assigment part of algorithm ?
I understand that in each iteration it choose the solution with ...
0
votes
1answer
423 views
XNA disable draw method
I am trying to run an evolutionary algorithm using xna
i would like only to run the logical side of the game
and after a long caculation time add the animation.
Does anybody know how to accelerate ...
0
votes
2answers
99 views
R template for evolutionary algorithms?
Is there a ready template to run evolutionary\genetic algorithms in R?
I am interested in a code that would allow me to add graphical output and user input between iterations.
Thanks for reading!
...
0
votes
2answers
115 views
Particle Swarm Optimisation: dealing with uncertainty / imprecision in candidate solution fitness
I wish to optimise the fit of a complex, parameterised model to noisy data using Particle Swarm Optimisation (PSO). The data is time-series chemical concentration values.
Within my optimisation ...
1
vote
2answers
174 views
Multi-objective optimization method needed
EDIT: In lieu of other suggestions, I've decided to play around with the Python DEAP framework until I come up with something usable. Hopefully this helps people with a similar problem.
I am ...
2
votes
1answer
307 views
Function Values using Differential Evolution
How can I use differential evolution to find the maximum values of the function function f(x) = -x(x+1) from -500 to 500? I need this for a chess program I am making, I have begun researching on ...
0
votes
4answers
74 views
It's possible to design a program that works like cells in a human body (or life)? [closed]
I always think that life in general is really very complex and we don't even know all about it. But it works, right? that lead me to think if it was possible to think of a program as thinking of a ...
2
votes
2answers
260 views
Lack of diversification, is it really a drawback of Genetic Algorithms?
We know that Genetic Algorithms (or evolutionary computation) work with an encoding of the points in our solution space Ω rather than these points directly. In the literature, we often find that GAs ...
3
votes
2answers
664 views
What are the real differences between genetic algorithms and evolutionary algorithms?
I am reading some papers about Genetic Algorithms and often they mention Evolutionary Algorithms in a very similar way. According to Wikipedia, GAs are subset of EAs. However, if we look closer, we ...
1
vote
3answers
234 views
Evolution Strategies [closed]
What is the basic idea behind self adaptive evolution strategies? What are the strategy parameters and how are they manipulated during the run of the algorithm?
2
votes
0answers
158 views
Artificial Immune System (AIS) Java Framework
Is anyone aware of a reliable AIS framework, implemented in java? I am going to be working on an AIS inspired project soon and don't want to reinvent the wheel.
Thanks.
3
votes
1answer
1k views
Getting Started with Neural Networks (ANN)?
I've been involved with a lot of C-Programming and RT-Linux, now I want to do some Artificial Neural Networking,
BUT: How do I get started?
I'm also very interested in Evolutionary ...
3
votes
1answer
263 views
C# code or algorithm to quickly calculate distance between large strings? [closed]
Hi and thanks for looking!
Background
I have an XML file that contains 1900 nodes which themselves contain a string of encoded data of about 3400 characters.
As part of a use case for an ...
3
votes
2answers
286 views
CSound and Python communication
I am currently working on a specialization project on simulating guitar effects with Evolutionary Algorithms, and want to use Python and CSound to do this.
The idea is to generate effect parameters ...

