top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Neural Network : How can we implement the XOR function using single neuron or single layer perceptron ?

+1 vote
363 views
Neural Network : How can we implement the XOR function using single neuron or single layer perceptron ?
posted Mar 11, 2016 by Shyam Narayan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

A "single-layer" perceptron can't implement XOR. Check the following link (see the section Perceptron for XOR)

http://computing.dcu.ie/~humphrys/Notes/Neural/single.neural.html

answer Mar 11, 2016 by Salil Agrawal
Thanks...
Similar Questions
+3 votes

How can we implement an LRU cache using just a single container i.e. map or unordered_map?

Expected operations:
1. find(key_t) - find a certain value in cache
2. insert(key_t, value_t) - insert a new value to the cache

...