Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 763 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 763 Bytes

NeuralNet_From_Scratch

Writing a neural net from scratch in java for learning purposes

Results

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.

alt text