LoginSignup
0
0

More than 5 years have passed since last update.

Backpropagation Neural Network Java Code for learning XOR gate pattern

Last updated at Posted at 2018-08-04

I made neural network to learn XOR gate pattern using backpropagation learning method.

XOR Gate Pattern:

A = 0
B = 0
A XOR B = 0

A = 0
B = 1
A XOR B = 1

A = 1
B = 0
A XOR B = 1

A = 1
B = 1
A XOR B = 0

Java code for this neural network can be found here:
https://github.com/d-3-nny/AI-repo

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0