Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,14 +1,32 @@
|
|
1 |
|
2 |
---
|
3 |
-
language:
|
4 |
license: mit
|
5 |
tags:
|
6 |
- keras
|
7 |
- mnist
|
8 |
- image-classification
|
|
|
9 |
datasets: mnist
|
10 |
model-type: image-classification
|
11 |
---
|
12 |
# MNIST Classification Model
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
|
2 |
---
|
3 |
+
language: en
|
4 |
license: mit
|
5 |
tags:
|
6 |
- keras
|
7 |
- mnist
|
8 |
- image-classification
|
9 |
+
- cnn
|
10 |
datasets: mnist
|
11 |
model-type: image-classification
|
12 |
---
|
13 |
# MNIST Classification Model
|
14 |
|
15 |
+
An improved CNN model for handwritten digit recognition, trained on the MNIST dataset.
|
16 |
+
|
17 |
+
## Model Architecture
|
18 |
+
- Uses Convolutional layers (CNN)
|
19 |
+
- Data Augmentation for improved performance
|
20 |
+
- Batch Normalization
|
21 |
+
- Dropout for preventing Overfitting
|
22 |
+
- Dense layers with ReLU activation
|
23 |
+
|
24 |
+
## Parameters
|
25 |
+
- Optimizer: Adam (lr=0.001)
|
26 |
+
- Loss: Sparse Categorical Crossentropy
|
27 |
+
- Metrics: Accuracy
|
28 |
+
- Epochs: 20 (with Early Stopping)
|
29 |
+
- Batch Size: 32
|
30 |
+
|
31 |
+
## Performance
|
32 |
+
Test Accuracy: 0.9884
|