Skip to content

Python class that implements genetic machine learning approach to select the fittest vector. Also example usage on Erdos problem.

Notifications You must be signed in to change notification settings

trikota/python-vector-genetics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

python-vector-genetics

Python class that implements genetic machine learning approach to select the fittest vector.

from vectorgenetics import VectorEvolution

def error_function(vector):
  return error

ve = VectorEvolution(error_function, vector_shape)
ve.evolve() 

Also example usage on Erdos problem. Aim is to find such set of points on plane that there are as much as possible distances of length 1 between them. Result i got on set of 200 points after 300 generations. ( Computation was intense ) result_200_points

You can find more description at http://allmachineslearn.blogspot.com/2016/12/trying-to-solve-erdos-problem-with.html

About

Python class that implements genetic machine learning approach to select the fittest vector. Also example usage on Erdos problem.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages