An open API service indexing awesome lists of open source software.

https://github.com/intob/single-layer-perceptron

Most basic implementation of a neural network
https://github.com/intob/single-layer-perceptron

Last synced: 2 months ago
JSON representation

Most basic implementation of a neural network

Awesome Lists containing this project

README

        

# single-layer-perceptron

Most basic form of neural network, written in Go.

The perceptron is trained with input data and the actual output.

When calling propogateForward() after training, an acturate prediction is returned.

The actual output only depends on the first value of each input vector.