Socket
Book a DemoInstallSign in
Socket

genetics-js

Package Overview
Dependencies
Maintainers
5
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

genetics-js

Genetic and evolutionary algorithms framework for the web

1.3.0
latest
Source
npmnpm
Version published
Weekly downloads
22
1000%
Maintainers
5
Weekly downloads
 
Created
Source

genetics.js logo

Evolutionary algorithms library for the web.

GitHub CircleCI branch Coverage Status Open source GitHub tag (latest SemVer) Website Twitter Follow npm

IntroductionInstallationUsageRoadmapContributingAuthorsLicense

📚 Introduction

Evolutionary computing is one of the main techniques nowadays for solving complex optimization problems. This library provides with the basic structure for implementing the most common evolutionary algorithms, such as genetic algorithms.

drawing

Evolutionary algorithms basic structure

Evolutionary algorithms are composed basically by four elements:

  • Individuals: Represent possible solutions of our problem in a determinate search space.
  • Mutation: Mutation operator alterates one individual.
  • Recombination: Recombination operator takes two parents and creates the offspring.
  • Parent selection: Selection of the best parents that are going to be reproduced in the next generation.
  • Survivor selection: Selection of the offspring and parents that are going to be the next generation.

This framework is going to provide the most common techniques for each component.

🔧 Installation

Currently project is under development (no stable version released :warning:), but it is going to be installed through npm:

npm install genetics-js

🧬 Usage

No major versions have been released, so only Individuals creation is implemented:

import Genetics from 'genetics-js';
const { BinaryIndividual } = Genetics.individual;

let individual = new BinaryIndividual('001100');
individual.genotype // [false, false, true, true, false, false]

🌠 Roadmap

The roadmap is strictly determined by the operations that are going to be implemented:

  • v0.1.0: Implementation of individuals.
  • v0.2.0: Implementation of mutation operators.
  • v0.3.0: Implementation of recombination operators.
  • v0.4.0: Implementation of parent selection methods.
  • v0.5.0: Implementation of survivor selection methods.
  • v0.6.0: Implementation of population and offspring management.
  • v0.7.0: Implementation of common evolutionary algorithms with fixed configurations.

🏆 Successes

The library has been successfully used in the following projects:

👐 Contributing

You can report a bug, or request a feature with an issue:

Any help would be welcome :smile:.

💪 Authors

📝 License

This project is licensed under the MIT License

Keywords

genetic algorithms

FAQs

Package last updated on 02 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.