Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
chromosome-js
Advanced tools
A small library to help curious people to develop their own Genetic Algorithms.
A small library to help curious people to develop their own Genetic Algorithms.
ChromosomeJS has arrived to the town to help you develop in a easier / faster-paced way your own Genetic Algorithms. In order to achieve this goals, this open-project try to help you in 3 different ways:
The documentation is under development
An essential part of ChromosomeJS is to help people understand better Genetic Algorithms by example. The documentation does not exclusively aim to cover the developer API but also to offer a nice introduction to genetic algorithms, present the library through examples and contain references to good sources of information.
Do you know about Genetic Algorithms and want to explain some concept? Are you eager to help us improve the language that we use? Do you have any doubt or something that we could make clearer? Please open an issue starting with [Documentation]
Utility library is still expanding for the first version ChromosomeJS offers a serie of utility functions to help out with different part of your Genetic Algorithm.
generateIndividual - (genotype: Genotype, fitnessFunction: FitnessFunction): Individual
- Given a genotype and a fitness function it will return an evaluated individualgenerateIndividualWith - (fitness: FitnessFunction): IndividualGenerator
- Returns a function that only requires a chromosome/genotype to get an individualgeneratePopulation - (genotype: Genotype, fitness: FitnessFunction, size: number) => Individual[]
- Given a genotype, fitness and a number of individuals it will create a first generationCrossoverFunction = (genome1: Genome, genome2: Genome) => [Genome, Genome]
xPointCrossover - (x: number) => CrossoverFunction
- Create X amount of fixed points and swap values between 2 individualsonePointCrossover - CrossoverFunction
- Two individuals generate two offsprings by swapping values at a random point.twoPointCrossover - CrossoverFunction
- Same as one point crossover but with two pointspmxCrossover - CrossoverFunction
- Operator which is a bit more optimal for some GA problems when you need a permutation of a set of values in the genomecycleCrossover - CrossoverFunction
- Operator which is a bit more optimal for some GA problems when you need a permutation of a set of values in the genome. (Better performance than PMX for some problems)MutationFunction = (probability: number, genome: Genome) => Genome
flipMutation - MutationFunction
- Flips bit from true to false and viceversaintInRangeMutation - MutationFunction
- Generate a new integer within the genotype limitsSelectionFunction = (amount: number, population: Individual[], options?: object) : Individual[]
selectRandom
- Get individuals randomly from the populationselectBest
- Get X individuals from the best ones of the populationselectWorst
- Get X individuals from the worst ones of the populationselectByTournament - `options: {tournamentSize}`
- Select N random individuals from the population and select the best one of those, will be done as many times as individuals are required.selectRoulette
- Choose individuals by the proportion of their fitness to the total fitness, so individuals with higher fitness have more chances to be selected.You can help ChromosomeJS to extend the utils functions library, define a better API to interact with it or simply make a feature request. Just open an issue starting with [Utils]
.
The framework is under development ChromosomeJS also makes easy to 'plug-n-play', so we just choose/define our genetic algorithm and it will take care of run it for you interacting through callbacks. It needs you to define the different cycle functions (Crossover, mutation...) and constants (probabilities, population and individual size...) and then just run your algorithm. Right now there is a very rough implementation that does not consider many aspects. The plan is to try to abstract it to being able to run it on a Worker, abstract you from your types and complex operations reducing it to array operations, make it more efficient for node and browser environments.
The Genetic Algorithm will instanciate a new Genetic Algorithm (you specify seed, mutation, crossover, fitness, selection), the meta parameters (probabilities, population size, options for the selectors...) and hooks (onGeneration). It enables you to do a simple step using your parameters.
Runner is just an abstraction on top of genetic algorithm that helps you run your GA Class asynchronously (specially thought for the browser) until it meets certain conditions (number of generations).
To help ChromosomeJS offer a more performant framework, improve the API, extend it to fit other Evolutionary Algorithms you could start by opening an issue starting with [Framework]
.
FAQs
A small library to help curious people to develop their own Genetic Algorithms.
The npm package chromosome-js receives a total of 11 weekly downloads. As such, chromosome-js popularity was classified as not popular.
We found that chromosome-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.