Giter Club home page Giter Club logo

genetic.ts's Introduction

Genetic.ts

A simple yet powerful and hackable Genetic Algorithm library. Handles your parent finding, crossover and mutation. Contains also some helpful functions to get you quickly started.


installation

As a module:

npm i genetic.ts
# or
yarn add genetic.ts

For browser:

<script src="https://cdn.jsdelivr.net/npm/genetic.ts/dist/genetic.web.js"></script>

usage

See examples. Source code can be found in docs/.

import * as genetic from 'genetic.ts' /* import the library, this object will be available globally if imported through HTML */

const population = [
  {
    dna: [1, 2, 4],
    fitness() {
      return this.dna.reduce((a, b) => a + b)
    },
  },
  {
    dna: [4, 4, 8],
    fitness() {
      return this.dna.reduce((a, b) => a + b)
    },
  },
  {
    dna: [11, 3, 7],
    fitness() {
      return this.dna.reduce((a, b) => a + b)
    },
  },
]

/* create your genetic object */
const ga = new genetic.Instance({
  population /* set your population */,
  mutationFunction: genetic.chance(
    genetic.add(-0.5, 0.5)
  ) /* add mutation function */,
  modes: {
    crossover:
      genetic.CrossoverModes.clone /* overwrite default modes with enums */,
  },
})

/* All Genetic's methods are chainable */
ga.findParents() /* finds parents using the passed mode */
  .crossover() /* creates new genes using the passed mode */
  .mutate() /* mutates the genes using the passed function */
  .finishGeneration() /* Overwrites your population's dna and increments the generation counter */

/* or use the `nextGeneration` method to do the above all at once */
ga.nextGeneration()

configuration

The genetic.Instance class accepts a configuration object in the constructor. Genetic instance will follow the same structure. Here's the object it accepts with its defaults (those that do not have a default require a value to be passed):

  • population: array containing your members that satisfy the IPopMember interface
  • mutationFunction: function to be used when mutating the genes
  • mutationRate: mutation rate of the algorithm (default: 0.1)
  • amountOfParents: amount of parents to be chosen from the mating pool (default: 2)
  • modes: object containing properties specifying the modes:
    • parentsSelection: method of choosing the parents (default: 'best')
    • crossover: method of crossing parents' genes (default: 'random')
  • preserveParents: preservation of parents' dna in the new generation. If you set this to true and have modes.parentsSelection = 'best' you will ensure the next generations wont get worse (default: false)
  • keepHistory: saves history of parents of every generation in this.history

population

A population is considered correct when:

interface IPopMember<DNA> {
  fitness(): number
  dna: DNA
}
  • it is an array
  • each element in the array is an object implementing IPopMember:
    • contains a fitness method that returns the fitness (number)
    • contains a dna property:
      • can be any data structure as long as it ends with a number
      • the structure is the same for every member in the array

If you're unsure whether your population is correct you can always use genetic.validatePopulation(pop) that will throw an error if something is wrong.


modes

Parent selection modes:

methods of choosing the parents

best: takes members with highest fitness scores

probability: selects members based on their fitness scores that will correspond to the chance of being chosen

probability2: selects members based on their fitness scores squared that will correspond to the chance of being chosen

probability3: selects members based on their fitness scores cubed that will correspond to the chance of being chosen

Crossover modes:

method of crossing parents' genes

random: randomly choosing a parent for each gene

average: averaging all parents' dna

clone: randomly selecting a parent and cloning his dna


mutating

A mutation function accepts data about the current gene and will return a number that will be added to the gene.

A mutation function is considered correct when:

type MutationFunction = (mutationRate: number) => number
  • will accept a mutationRate
  • will return a number

history

If enabled history is stored under ga.history. It is saved each time ga.findParents() is called. It is an array of arrays of all previous parents with their fitness and dna:

type HistoryRecord<DNA> = {
  fitness: number
  dna: DNA
}[]

premade mutation functions

Genetic.ts provides some pre-made functions for mutations:

chance

If you'd like to mutate only some properties (based on the mutation rate) wrap your function in chance(yourFunction), like so:

const mutFunc = chance((mRate) => 2 * mRate)

add

If you'd like to mutate values by some random number in a range use add(min, max):

const mutFunc = add(-0.3, 0.3) /* min inclusive, max exclusive */

genetic.ts's People

Contributors

dependabot-preview[bot] avatar dependabot[bot] avatar shilangyu avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

genetic.ts's Issues

Keep history

If set to true, save every generation to history

Immutability

ga.parents and ga.newDna should be deep copies of the dna. ga.population should stay as a direct reference to the population and only the dna property can be changed

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.