The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
18 views

Requirements for Evaluation function in evolutionary algorithms

For a publication I'm looking for references for generic requirements of evaluation/fitness functions in evolutionary (more specifically genetic) algorithms. I could come up with some requirements ...
0
votes
0answers
35 views

Finding the similarity between two functions

I am a first-year grad student in Computer Science, and I need some help with a problem that I think is statistically oriented. I have taken a statistics course, but it was abysmal and I haven't had ...
0
votes
3answers
115 views

Backpropagation vs Genetic Algorithm for Neural Network training

I've read a few papers discussing pros and cons of each method, some arguing that GA doesn't give any improvement in finding the optimal solution while others show that it is more effective. It seems ...
4
votes
2answers
369 views

How to statistically compare two algorithms across three datasets in feature selection and classification?

Problem background: As part of my research, I have written two algorithms that can select a set of features from a data set (gene expression data from cancer patients). These features are then tested ...
1
vote
1answer
121 views

Citation for Continuous Space Hill Climbing Algorithm pseudocode on Wikipedia?

Can anyone provide a reference for the Continuous Space Hill Climbing Algorithm pseudocode in the Wikipedia article on Hill Climbing? The Russell and Norvig text is cited, but they only provide the ...
0
votes
1answer
110 views

How to chose optimal number of lags and inputs?

I'm using Genetic Algorithms to do inputs selection in a time series problem. The issue is that the number of possible inputs is very large (100 possible inputs + inputs' lags) and I don't know a ...
1
vote
1answer
61 views

How to compare different heuristics over a large number of test instances

I have 3 different heuristics (H1, H2, H3) that are variation of genetic algorithms combined with some other techniques. The problem that I try to solve is The problem to minimize energy costs for ...
3
votes
3answers
216 views

How to decide whether to reuse old code or reinvent the wheel?

For a long time now, I have been thinking about working with neural networks and genetic algorithms. I have never been able to decide whether it makes sense to start writing my own code, or to reuse ...
1
vote
1answer
113 views

Framework for Symbolic Classification

Please advise good framework for symbolic classification. I am currently using GPTIPS for that but I belive there are better options. What I am trying to do is following: for set of features of my ...
2
votes
0answers
176 views

Genetic algorithms, genetic programming or machine learning algorithms for solving this problem

I have a problem that consists of finding the optimal solution based on the following criteria: Logic for identifying that event A has occurred (i.e. "find" logic that most accurately categorises an ...
5
votes
1answer
457 views

How to avoid overfitting when using crossvalidation within Genetic Algorithms

This is a long set-up, but the pure intellectual challenge will make it worthwhile I promise ;-) I have marketing data where there is a treatment and a control (i.e a customer gets no treatment). The ...
3
votes
2answers
1k views

How to perform genetic-algorithm variable selection in R for SVM input variables?

I'm using the kernlab package in R to build an SVM for classifying some data. The SVM is working nicely in that it provides 'predictions' of a decent accuracy, however my list of input variables is ...
6
votes
3answers
830 views

Benefits of using genetic algorithm

Can anyone explain to me the benefits of the genetic algorithm compared to other traditional search and optimization methods?
10
votes
2answers
794 views

What language to use for genetic programming

As part of an assignment I'll have to write a genetic programming algorithm that does prediction of atmospheric pollutant levels. Since I have no experience, can anyone point me pointers to ...
2
votes
2answers
250 views

Convergence of a genetic algorithm

Does anyone know of any method for deciding when a genetic algorithm is done? In MCMC (e.g, BUGS), several chains are started at different, random points. When they all look the same, it is done. Has ...
3
votes
1answer
70 views

On what tasks does neuroevolution outperform basic application of neural networks or genetic algorithms?

There has been a recent interest in combining genetic algorithms and neural networks into a general neuroevolution framework. The basic idea, is that your genetic algorithm is evolving the parameters ...
1
vote
1answer
183 views

Curve fitting multivariate data for maximal correlation with univariate data?

I have multivariate time series data of the EURUSD financial vehicle. In this data each variable represents a different metric. There are ~200,000 rows and ~20 variables. There are no NULL values for ...
1
vote
1answer
78 views

Correct way of testing machine learning against random data

I am using a genetic algorithm to search a very complex hypothesis space. Now I want to estimate how much overfitting I can expect in the final resulting hypothesis. The final model will be used for ...
6
votes
3answers
254 views

Feature construction in R

I am wondering if there are any algorithms (perhaps genetic algorithms) in R for feature construction (deriving candidate predictors from existing predictors)? I am thinking of a routine to test ...
5
votes
2answers
708 views

Is there an R optimization package that can handle integer constraints and non-linear objective functions?

I am looking for an optimization routine that can optimize a non-linear objective function with integer constraints. NuOPT for S-Plus, CPLEX, or Matlab include powerful optimization packages for these ...
3
votes
2answers
207 views

Genetic algorithm for parameter estimation

I am a bit confused about parameter estimation using evolutionary methods and their ability to do such a job. Since I am not that pro in stat I am describing my problem with giving an example. Given ...
3
votes
2answers
220 views

Random number generation

Generating n random variables whose summation will be 1. [I got the answer.] EDIT On genetic algorithm, we have to maintain population. Say, I have two individuals a and b. Every individual consists ...
15
votes
2answers
509 views

How to choose between learning algorithms

I need to implement a program that will classify records into 2 categories (true/false) based on some training data, and I was wondering at which algorithm/methodology I should be looking at. There ...
6
votes
5answers
868 views

How to check if modified genetic algorithm is significantly better than the original?

My question deals with how to be able to assert that an "improved" evolutionary algorithm is indeed improved (at least from a statistic point of view) and not just random luck (a concern given the ...
4
votes
1answer
274 views

Nonlinear models which are hard to estimate

Genetic algorithms are avoided in econometry literature as often as possible, but still sometimes they are inevitable. The question is: Which well known models are the most difficult to estimate using ...
2
votes
1answer
120 views

Are there any recommended approaches for analysing data from genetic algorithms?

After running a study based on interactive genetic algorithms, I have a univariate data file containing multiple participants each doing multiple generations (blocks) of multiple trials. Is there an ...
4
votes
1answer
93 views

Rating how closely one graph models another

I'm using a genetic algorithm to generate a string that produces certain results I map into a line/bar graph. I'm trying to rate how closely the results produced by the genetic string compares to a ...
8
votes
2answers
307 views

Comparing two genetic algorithms

I have two implementations of a genetic algorithm which are supposed to behave equivalently. However due to technical restrictions which cannot be resolved their output is not exactly the same, given ...