Skip to content

sig-ml/genetic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Genetic

A general purpose parallelized Genetic search library.

Usage

  • Any object which provides the following methods can be made into an individual in a population

    • crossover(self, individual2, crossover_rate)
    • mutate(self, mutate_rate)
    • fitness(self)
    • __init__(self, identity)
  • Calling the genetic search function performs the search

Resources

Todo

  • multiprocessing support
  • ipyparallel support

About

Parallelized Genetic Search in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages