Skip to content

sushantPatrikar/XOR-Gate-With-Neural-Network-Using-Numpy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NeuralNetwork-logo

XOR-With-Numpy-Neural-Network

XOR gate which predicts the output using Neural Network.


Python v3.6.5

Libraries used:

  1. numpy
  2. tkinter
  3. math
  4. random

Purpose

This project can be used for educational purposes as it gives user the freedom to change learning rate, number of neurons in hidden layer and number of epochs. User can compare the results after changing these values.

Working

The Neural Network has 3 layers: input layer with 2 neurons, hidden layer, in which user can select the number of neurons according to them, and by default, it's value is 2, and output layer with 1 neuron. The first phase of neural network is training in which the possible values of (X,Y) goes as input [(0,0),(0,1),(1,0),(1,1)] with their respective answers [0,1,1,0]. The neural network modifies it's weights & biases according to the answers. After completion of training the neural network is ready to predict the answers.

How to use

After executing the program, this window pops up.

The user can select learning rate, number of neurons in hidden layer and number of epochs according to him, and then click on 'Set' button which sets the number of neurons in hidden layer, if changed by the user. After changing them, click on 'Train' button, which trains your neural network to predict the output based on the inputs.

Once the 'Training Complete' comes on the screen, the neural network is ready to predict the results. Input X & Y, and then click on the 'Predict' button, the predicted result will be shown on the Answer box, which you can compare with the expected answer.

Excited to view Pull Requests coming from your side!

For more information, you can visit my website.