Code Monkey home page Code Monkey logo

abstract-genetic-solver's Introduction

abstract-genetic-solver

A simple asynchronous genetic solver that's agnostic about genome types, fitness functions, etc.


Installation

npm i abstract-genetic-solver

Usage

Here's a trivial solver that treats each genome as an array of 10 floats, and tries to maximize their sum.

var Solver = require('abstract-genetic-solver')
var solver = new Solver(10)

// required methods that client must implement
solver.initGene = (index) => Math.random()
solver.mutateGene = (index, oldValue) => Math.random()
solver.measureFitness = async genome => genome.reduce((prev, val) => prev + val, 0)

// optional per-generation event
solver.afterGeneration = function () {
    var best = solver.getCandidate(0)
    console.log(`Best fitness so far: ${best.fitness}`)
    console.log(`Best genome so far: ${best.genome}`)
}

// start solving
solver.paused = false

Note that measureFitness() is async - this lets you calculate fitness values in a web worker, etc. The method can return a value synchronously of course, but it must be declared as async.

Other settings

// number of individuals in each generation
solver.population = 100

// limit for simultaneous calls to measureFitness (0 => no limit)
solver.maxSimultaneousCalls = 0

// chances of an individual mutating or crossing over each generation
solver.mutationChance = 0.9
solver.crossoverChance = 0.3

// new generations can retain N fittest individuals from the previous
solver.keepFittestCandidates = 3

// How strongly to prefer fitter candidates when evolving
//      1 => choose from all candidates randomly
//      2 => strong bias towards fitter candidates
solver.rankSelectionBias = 1.5

Details

By Andy Hall, MIT license

abstract-genetic-solver's People

Contributors

fenomas avatar

Stargazers

 avatar

Watchers

 avatar

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.