Skip to content

Commit f89ffbd

Browse files
authored
Update IntroToCNNs.md
1 parent 3ba0064 commit f89ffbd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

contrib/machine-learning/IntroToCNNs.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ The convolutional layer is the core building block of a CNN. The layer's paramet
6363

6464
#### Input Shape
6565
The dimensions of the input image, including the number of channels (e.g., 3 for RGB images & 1 for Grayscale images).
66-
<div style="display: flex; justify-content: space-around; align-items: center;">
66+
<div>
67+
<p align='left'>
6768
<table>
6869
<caption>1 and 0</caption>
6970
<tbody>
@@ -76,6 +77,8 @@ The dimensions of the input image, including the number of channels (e.g., 3 for
7677
<tr> <td>1</td><td>0</td><td>1</td><td>1</td><td>1</td> </tr>
7778
</tbody>
7879
</table>
80+
</p>
81+
<p align='right'>
7982
<table>
8083
<caption>9</caption>
8184
<tbody>
@@ -88,6 +91,7 @@ The dimensions of the input image, including the number of channels (e.g., 3 for
8891
<tr> <td>0</td><td>0</td><td>0</td><td>1</td><td>0</td> </tr>
8992
</tbody>
9093
</table>
94+
</p>
9195
</div>
9296

9397
- The input matrix represents a simplified binary image of handwritten digits,
@@ -450,4 +454,4 @@ dropout_output = cnn_model.dropout(flattened_output, dropout_rate=0.3)
450454
print("\nDropout Output:\n", dropout_output)
451455
```
452456

453-
Feel free to play around with the parameters!
457+
Feel free to play around with the parameters!

0 commit comments

Comments
 (0)