Giter VIP home page Giter VIP logo

darwin-js's Introduction

darwin-js

A simple genetic algorithm framework for Node. Allows you to implement the genetic operators (selection, crossover and mutation), and fitness function, and it handles the rest. The "chromosomes" can be any datatype whatsoever, and the fitness function can either be synchronous or a Promise.

Install

npm install --save darwin-js

Usage

var ga = require('darwin-js')

// Implement on your own
var options = {
  // Always copy over best individual without modification
  // to the next generation.
  elitist: true,
  fitness: (individual) => { 
    // You have the option of returning a Promise here, if
    // G.A. needs to asynchronously reach out to the user, say, for a 
    // subjective rating.
    return fitness
  },
  selection: (population) => {
    // Return an individual population[k].individual based on
    // population[k].fitness.
    var k = ...
    return population[k].individual
  },
  crossover: (parent1, parent2) => {
    // Combine parent1 and parent2 somehow
    return [child1, child2]
  },
  mutation: (individual) => {
    // Mutate individual (or return unchanged)
    ...
    return mutant
  },
  iterations: 10000,
  stop: (fitness) => {
    // Return true if fitness is high enough. Will
    // terminate G.A. even if it hasn't iterated 10000 times.
    return ...
  },
  stats: (fitnesses, best) => {
    console.log("Fitnesses of current generation: " + fitnesses)
    console.log("Best performing individual: %j", best)
  }
}

// Run genetic algorithm
ga.run(options).then((result) => {
  console.log('Best individual: ' + result.best.individual)
  console.log('Best individual\'s fitness: ' + result.best.fitness)
  console.log('Last population: %j', result.population)
}).catch((err) => {
  console.log('Oops: ' + err)
})

API

TODO. See tests for a complete example for now.

darwin-js's People

Contributors

itsnickbarry avatar jayhardee9 avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Forkers

itsnickbarry

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.