|
@@ -35,12 +35,20 @@ import (
|
|
|
neuralnetwork "../neuralnetwork"
|
|
|
)
|
|
|
|
|
|
+// Genetic package implements basic proncipals of genetic and natural selection mechanisms for
|
|
|
+// neuralnetwork.NeuralNetwork
|
|
|
+
|
|
|
+// PopulationConfig is structure that is used to specify population parameters
|
|
|
+// PopulationSize - size of population
|
|
|
+// SelectionSize - percentage of best individuals used for next generation
|
|
|
+// CrossbreedPart - percentage of weigts and biases used for crossbreed
|
|
|
type PopulationConfig struct {
|
|
|
PopulationSize int
|
|
|
- SelectionSize float64 // 0..1 persentage of success individuals to be used as parents for population
|
|
|
- CrossbreedPart float64 // 0..1 persentage of weights and biases to be exchanged beetween individuals while Crossbreed
|
|
|
+ SelectionSize float64 // 0..1 percentage of success individuals to be used as parents for population
|
|
|
+ CrossbreedPart float64 // 0..1 percentage of weights and biases to be exchanged beetween individuals while Crossbreed
|
|
|
}
|
|
|
|
|
|
+// Population is main class for genetic and natural selection of neuralnetwork.NeuralNetwork
|
|
|
type Population struct {
|
|
|
populationConfig *PopulationConfig
|
|
|
Networks []*neuralnetwork.NeuralNetwork
|
|
@@ -49,6 +57,8 @@ type Population struct {
|
|
|
etalonsCount int
|
|
|
}
|
|
|
|
|
|
+// NewPopulation is constructor of new Population with specified PopulationVerifier, Mutagen and PopulationConfig.
|
|
|
+// sizes parameter also specified neuralnetwork.NeuralNetwork layers configuration
|
|
|
func NewPopulation(verifier PopulationVerifier, mutagen Mutagen, populationConfig PopulationConfig, sizes []int) (p *Population) {
|
|
|
if populationConfig.PopulationSize%2 != 0 {
|
|
|
return nil
|
|
@@ -77,6 +87,7 @@ func NewPopulation(verifier PopulationVerifier, mutagen Mutagen, populationConfi
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+// NaturalSelection invokes natural selection process for specified number of generation
|
|
|
func (p *Population) NaturalSelection(generationCount int) {
|
|
|
for g := 0; g < generationCount; g++ {
|
|
|
p.crossbreedPopulation(p.verifier.Verify(p))
|