[mlpack-git] [mlpack/mlpack] Neural evolution algorithms implementation (CNE, NEAT, HyperNEAT) (#686)

Excalibur notifications at github.com
Sat Jul 16 00:51:09 EDT 2016


> +    return true;
> +  }
> +
> +
> +  // Initialize population.
> +  void InitPopulation() {
> +    aPopulation = Population(aSeedGenome, aPopulationSize);
> +  }
> +
> +  // Reproduce next generation of population.
> +  void Reproduce() {
> +    // keep best genome.
> +    Genome lastBestGenome = aPopulation.BestGenome();
> +
> +    // Remove stale species.
> +    if (aPopulation.aSpecies.size() > 10) {

This will be left to the end. As I am not sure whether current version will be the final steps organization of NEAT Reproduce().

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/mlpack/mlpack/pull/686/files/554a279b0089e4385dfb40077e578d6ae2a42ece#r71061025
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.cc.gatech.edu/pipermail/mlpack-git/attachments/20160715/189a550b/attachment.html>


More information about the mlpack-git mailing list