Easy-ML-For-Java icon indicating copy to clipboard operation
Easy-ML-For-Java copied to clipboard

A Java Framework to implement Machine Learning using Neural Networks and a Genetic Algorithm

Results 5 Easy-ML-For-Java issues
Sort by recently updated
recently updated
newest added

When using `NQuantilFitnessLine` or `WorstFitnessLine` graph line plotters, the following exception is raised: ``` Exception in thread "main" java.lang.BootstrapMethodError: bootstrap method initialization exception at java.base/java.lang.invoke.BootstrapMethodInvoker.invoke(BootstrapMethodInvoker.java:188) at java.base/java.lang.invoke.CallSite.makeSite(CallSite.java:315) at java.base/java.lang.invoke.MethodHandleNatives.linkCallSiteImpl(MethodHandleNatives.java:281) at...

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

This would fill in the role of the mutator: https://github.com/tomLamprecht/Easy-ML-For-Java/blob/master/src/main/java/de/fhws/ai/networktrainer/NNRandomMutator.java Reference: https://en.wikipedia.org/wiki/CMA-ES This is way more efficient than random mutation

enhancement
good first issue

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