basic_neural_network
basic_neural_network copied to clipboard
A very basic Java Neural Network Library.
* verify implementation for feature and main/master branch * enable automated updates of dependencies
Added getActivations method to NeuralNetwork class that returns each neuron in the form of a 2D array of doubles. Neuron values are stored as SimpleMatrix objects in an ArrayList inside...
Bumps [gson](https://github.com/google/gson) from 2.8.4 to 2.8.9. Release notes Sourced from gson's releases. Gson 2.8.9 Make OSGi bundle's dependency on sun.misc optional (#1993). Deprecate Gson.excluder() exposing internal Excluder class (#1986). Prevent...
in your lines https://github.com/kim-marcel/basic_neural_network/blob/master/src/main/java/basicneuralnetwork/NeuralNetwork.java#L165-L169 ``` weights[n - 1] = weights[n - 1].plus(deltas); // Calculate and set target for previous (next) layer SimpleMatrix previousError = weights[n - 1].transpose().mult(errors); target = previousError.plus(layers[n...
just a small (copy-paste?) typo in the tutorial
Hi! Great Library! I'm using it in [this](https://github.com/vishal-chandra/FlappyGenetics) project and it's working great. However, the issue I'm having arises when saving a network. The file nn_data.json is being written to...
Added a convinient `NeuralNetworkBuilder` and improved the activation functions.