Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# pi-predicter
|
| 2 |
|
| 3 |
A neural network model that memorizes and predicts digits of π (pi) using Fourier feature encoding. This model demonstrates the memorization capabilities of MLPs with positional encodings by learning to predict specific digits of π at given positions.
|
|
@@ -94,7 +100,7 @@ The model uses Fourier features to transform scalar positions into high-dimensio
|
|
| 94 |
- This encoding enables the MLP to learn high-frequency functions of position
|
| 95 |
|
| 96 |
### Memory Efficiency
|
| 97 |
-
Despite memorizing 100,000 digits, the model achieves this with only ~
|
| 98 |
|
| 99 |
## License
|
| 100 |
|
|
@@ -102,4 +108,4 @@ This model is released under the MIT License.
|
|
| 102 |
|
| 103 |
---
|
| 104 |
|
| 105 |
-
**Note**: This model is intended for educational and demonstration purposes, showcasing neural network memorization capabilities rather than mathematical computation. The digits of π are deterministic and can be computed exactly using algorithms; this model demonstrates an alternative approach using machine learning techniques.
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- pi
|
| 5 |
+
- mlp
|
| 6 |
+
---
|
| 7 |
# pi-predicter
|
| 8 |
|
| 9 |
A neural network model that memorizes and predicts digits of π (pi) using Fourier feature encoding. This model demonstrates the memorization capabilities of MLPs with positional encodings by learning to predict specific digits of π at given positions.
|
|
|
|
| 100 |
- This encoding enables the MLP to learn high-frequency functions of position
|
| 101 |
|
| 102 |
### Memory Efficiency
|
| 103 |
+
Despite memorizing 100,000 digits, the model achieves this with only ~550k parameters, demonstrating the efficiency of neural networks as lookup tables for structured data.
|
| 104 |
|
| 105 |
## License
|
| 106 |
|
|
|
|
| 108 |
|
| 109 |
---
|
| 110 |
|
| 111 |
+
**Note**: This model is intended for educational and demonstration purposes, showcasing neural network memorization capabilities rather than mathematical computation. The digits of π are deterministic and can be computed exactly using algorithms; this model demonstrates an alternative approach using machine learning techniques.
|