Skip to content

citriotsolutions/simpleNeuralNetwork

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Network in Python

(Created from scratch without using TensorFlow with basic Numpy and some math.)

BackPropagation 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

  • Python 100.0%