Skip to content

A Neural Network using only numpy from scratch in Python3

License

Notifications You must be signed in to change notification settings

born-2learn/simpleNeuralNetwork

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Network in Python

(Created from scratch without using TensorFlow)

Back-Propagation Technique and Sigmoid normalization Function have been used.

Training Set

Input 1 Input 2 Input 3 Output
0 0 1 0
1 1 1 1
1 0 1 1
0 1 1 0

Test Case

Input 1 Input 2 Input 3 Output
1 0 0 To be predicted

About

A Neural Network using only numpy from scratch in Python3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages