File size: 623 Bytes
0662863
 
 
8248475
 
 
 
 
 
 
4e97415
1
2
3
4
5
6
7
8
9
10
11
12
---
license: apache-2.0
---

Implemented as a **Multi-Layer Perceptron to classify handwritten Digits (0-9)** 

[[Annotated Notebook](https://github.com/dcarpintero/fastai-deeplearning/blob/main/course2024/lesson_03.full.mnist.mlp.md)]

**Model Architecture and Results**

The model comprises a flattening layer and three linear layers `((256, 64) hidden dimensions)` with relus to approximate non-linearity. It achieves 95.6% accuracy after `15 training epochs` and `batch size = 64`. Taining and Test MNIST datasets are loaded with PyTorch [dataloaders](https://pytorch.org/tutorials/beginner/basics/data_tutorial.html).