diff --git a/contrib/machine-learning/IntroToCNNs.md b/contrib/machine-learning/IntroToCNNs.md index 5f81ace..7c0812f 100644 --- a/contrib/machine-learning/IntroToCNNs.md +++ b/contrib/machine-learning/IntroToCNNs.md @@ -63,7 +63,8 @@ The convolutional layer is the core building block of a CNN. The layer's paramet #### Input Shape The dimensions of the input image, including the number of channels (e.g., 3 for RGB images & 1 for Grayscale images). -
+
+

@@ -76,6 +77,8 @@ The dimensions of the input image, including the number of channels (e.g., 3 for
1 and 0
10111
+

+

@@ -88,6 +91,7 @@ The dimensions of the input image, including the number of channels (e.g., 3 for
9
00010
+

- 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) print("\nDropout Output:\n", dropout_output) ``` -Feel free to play around with the parameters! \ No newline at end of file +Feel free to play around with the parameters!