Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
---
|
4 |
+
|
5 |
+
Implemented as a **Multi-Layer Perceptron to classify handwritten Digits (0-9)**
|
6 |
+
|
7 |
+
[[Annotated Notebook](https://github.com/dcarpintero/fastai-deeplearning/blob/main/course2024/lesson_03.full.mnist.mlp.md)]
|
8 |
+
|
9 |
+
**Model Architecture and Results**
|
10 |
+
|
11 |
+
The model comprises a flattening layer and three linear layers `((128, 64) hidden dimensions)` with relus to approximate non-linearity. It achieves 90% accuracy after `10 training epochs` and `batch size = 128`. Taining and Test MNIST datasets are loaded with PyTorch [dataloaders](https://pytorch.org/tutorials/beginner/basics/data_tutorial.html).
|