Writing a neural net from scratch in java for learning purposes
while writing the test for the train method I used a small snippet of the iris data classification and trained the network on it. The network structure was 4 layers(Input, Dense1(used sigmoid for activation), Dense2(used sigmoid for activation), Output(used sigmoid for activation)). This network was able to train and improve, althought not as much as can be done with more data.The test has small ammount of data due to not wanting to write a slow and heavy test that requires a lot of computation and memory.