Update README.md
Browse files
README.md
CHANGED
@@ -18,7 +18,7 @@ datasets:
|
|
18 |
|
19 |
## How the Model Was Trained
|
20 |
|
21 |
-
The model was trained using the MNIST dataset, which consists of 60,000 training images and 10,000 test images. Each image is a 28x28 grayscale representation of a handwritten digit. Training was conducted over
|
22 |
|
23 |
### Training Script
|
24 |
|
@@ -72,7 +72,20 @@ model.eval()
|
|
72 |
|
73 |
## Performance
|
74 |
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
|
77 |
## Limitations and Ethics
|
78 |
|
|
|
18 |
|
19 |
## How the Model Was Trained
|
20 |
|
21 |
+
The model was trained using the MNIST dataset, which consists of 60,000 training images and 10,000 test images. Each image is a 28x28 grayscale representation of a handwritten digit. Training was conducted over 32 epochs with a batch size of 32. The SGD optimizer was used with a learning rate of 0.01.
|
22 |
|
23 |
### Training Script
|
24 |
|
|
|
72 |
|
73 |
## Performance
|
74 |
|
75 |
+
<div style="display: flex; justify-content: space-between;">
|
76 |
+
<img src="img/output.png" alt="Training Plot 1" style="width: 45%;">
|
77 |
+
<img src="img/output2.png" alt="Training Plot 2" style="width: 45%;">
|
78 |
+
</div>
|
79 |
+
|
80 |
+
## Testing Model
|
81 |
+
|
82 |
+
<div style="display: grid; grid-template-rows: auto auto; grid-template-columns: 50% 50%; gap: 20px;">
|
83 |
+
<img src="img/myplot1.png" alt="Training Plot 1" style="width: 100%;">
|
84 |
+
<div style="display: grid; grid-template-columns: 50% 50%;">
|
85 |
+
<img src="img/myplot2.png" alt="Training Plot 2" style="width: 100%;">
|
86 |
+
<img src="img/myplot3.png" alt="Training Plot 3" style="width: 100%;">
|
87 |
+
</div>
|
88 |
+
</div>
|
89 |
|
90 |
## Limitations and Ethics
|
91 |
|