added truth table to README.md
Browse files
README.md
CHANGED
|
@@ -5,7 +5,14 @@ library_name: pytorch
|
|
| 5 |
|
| 6 |
# and
|
| 7 |
|
| 8 |
-
A neuron that performs the AND 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 |
# and
|
| 7 |
|
| 8 |
+
A neuron that performs the AND 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 | 0 |
|
| 15 |
+
| 1 | 1 | 1 |
|
| 16 |
|
| 17 |
It is inspired by McCulloch & Pitts' 1943 paper 'A Logical Calculus of the Ideas Immanent in Nervous Activity'.
|
| 18 |
|