Upload model_card.md with huggingface_hub
Browse files- model_card.md +6 -6
model_card.md
CHANGED
@@ -5,21 +5,21 @@ This model is a Convolutional Neural Network (CNN) trained to classify images of
|
|
5 |
|
6 |
## Model Architecture
|
7 |
|
8 |
-
-
|
9 |
- MaxPooling layers after each convolutional layer
|
10 |
- Dropout layer after the second convolutional layer
|
11 |
-
-
|
12 |
-
- Fully connected layer with
|
13 |
- Output layer with softmax activation for 2 classes (cats and dogs)
|
14 |
|
15 |
## Training
|
16 |
|
17 |
-
The model was trained using the Adam optimizer with a learning rate of 0.001 and Sparse Categorical Crossentropy loss. It was trained for
|
18 |
|
19 |
## Performance
|
20 |
|
21 |
-
|
22 |
|
23 |
## Usage
|
24 |
|
25 |
-
To use this model, you can load it using TensorFlow and make predictions on new images of cats and dogs.
|
|
|
5 |
|
6 |
## Model Architecture
|
7 |
|
8 |
+
- 4 Convolutional layers with ReLU activation and Batch Normalization
|
9 |
- MaxPooling layers after each convolutional layer
|
10 |
- Dropout layer after the second convolutional layer
|
11 |
+
- Flatten layer
|
12 |
+
- Fully connected layer with 512 units and ReLU activation
|
13 |
- Output layer with softmax activation for 2 classes (cats and dogs)
|
14 |
|
15 |
## Training
|
16 |
|
17 |
+
The model was trained using the Adam optimizer with a learning rate of 0.001 and Sparse Categorical Crossentropy loss. It was trained for 20 epochs with a batch size of 64. Data augmentation was also used.
|
18 |
|
19 |
## Performance
|
20 |
|
21 |
+
(Add your model's performance metrics here after training)
|
22 |
|
23 |
## Usage
|
24 |
|
25 |
+
To use this model, you can load it using TensorFlow/Keras and make predictions on new images of cats and dogs.
|