sadhaklal commited on
Commit
a3101c1
1 Parent(s): e139092

added truth table to README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -5,7 +5,14 @@ library_name: pytorch
5
 
6
  # a-and-not-b
7
 
8
- A neuron that performs the A AND (NOT B) logical computation.
 
 
 
 
 
 
 
9
 
10
  It is inspired by McCulloch & Pitts' 1943 paper 'A Logical Calculus of the Ideas Immanent in Nervous Activity'.
11
 
 
5
 
6
  # a-and-not-b
7
 
8
+ A neuron that performs the A AND (NOT B) logical computation. It generates the following truth table:
9
+
10
+ | A | B | C |
11
+ | - | - | - |
12
+ | 0 | 0 | 0 |
13
+ | 0 | 1 | 0 |
14
+ | 1 | 0 | 1 |
15
+ | 1 | 1 | 0 |
16
 
17
  It is inspired by McCulloch & Pitts' 1943 paper 'A Logical Calculus of the Ideas Immanent in Nervous Activity'.
18