tomLamprecht

Results 3 issues of tomLamprecht

Add a Convolutional Neural Network. See [Explanation](https://medium.com/@himadrisankarchatterjee/a-basic-introduction-to-convolutional-neural-network-8e39019b27c4) It should not inherit from any other class and should present an alternative to the Neural Network.

enhancement
stand-alone

Add an Implementation for Boltzmann Selection (see [Wikipedia](https://en.wikipedia.org/wiki/Selection_(genetic_algorithm)#Boltzmann_Selection)) It should inherit from [Selector-Interface](../tree/master/src/main/java/de/fhws/ai/geneticalgorithm/evolution/selector/Selector.java) For basic structure, see [EliteSelector](../tree/master/src/main/java/de/fhws/ai/geneticalgorithm/evolution/selector/EliteSelector.java)

enhancement
help wanted
good first issue

Add an Implementation for One Point Crossover Recombination (see [Wikipedia](https://en.wikipedia.org/wiki/Crossover_(genetic_algorithm)#One-point_crossover)) It should inherit from [Recombiner-Interface](../tree/master/src/main/java/de/fhws/ai/geneticalgorithm/evolution/recombiner/Recombiner.java) For basic structure, see [NNUniformCrossoverRecombiner](../tree/master/src/main/java/de/fhws/ai/networktrainer/NNUniformCrossoverRecombiner.java)

enhancement
good first issue
easy