File size: 373 Bytes
d881ea3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ---
tags:
- experiment
- pytorch
- xor
---
# XOR Experiment Results
Testing if a 2-layer NN can learn XOR.
## Final Accuracy: 100.00%
## Predictions:
| Input | Target | Predicted Prob | Label |
|-------|--------|----------------|-------|
| [0. 0.] | 0.0 | 0.0015 | 0.0 |
| [0. 1.] | 1.0 | 0.9939 | 1.0 |
| [1. 0.] | 1.0 | 0.9939 | 1.0 |
| [1. 1.] | 0.0 | 0.0015 | 0.0 |
|