Skip to content

dandycheng/ml-simple-xnor-neural-network

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 

Repository files navigation

ml-simple-xnor-neural-network

The mathematical explanation regarding neural network is in the Jupyter file in this repository.

This is a simple neural network that predicts an XNOR gate output.

XNOR gate logic:

A | B | Output
---------------
1 | 0 |   0
0 | 1 |   0
0 | 0 |   1
1 | 1 |   1