Neural-Network-with-Python icon indicating copy to clipboard operation
Neural-Network-with-Python copied to clipboard

A neural network with 3 layers made with just numpy as dependency

Results 1 Neural-Network-with-Python issues
Sort by recently updated
recently updated
newest added

Hello, it's possible to use your neural network for addition of integer/float with result > 1 ? like this : ``` training_set_inputs = array([[2,1],[3,2],[1,4],[4,3],[2,4]]) training_set_outputs = array([[3,5,5,7,6]]).T ``` when i...