This is a small project to delve into the land of neural networks.
I'm primarily using tutorials from The Coding Train in his Neural Networks - The Nature of Code playlist to get started with this along with further research to support a greater understanding.
- Can have any number of Nodes in each layer
- Can only have one hidden layer at the moment
- Feed forward and train given JSON in the format:
[
{
"inputs": [0,0],
"target": 0
},
{
"inputs": [0,1],
"target": 1
}
]
- Multiple hidden layers
- CNN capability
- Different activation functions