louiecerv commited on
Commit
5d73a1c
·
verified ·
1 Parent(s): 0ac7639

Upload model_card.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. 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
- - 3 Convolutional layers with ReLU activation and Batch Normalization
9
  - MaxPooling layers after each convolutional layer
10
  - Dropout layer after the second convolutional layer
11
- - Global Average Pooling layer
12
- - Fully connected layer with 256 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 5 epochs with a batch size of 32.
18
 
19
  ## Performance
20
 
21
- The model achieved an accuracy of X% on the validation set.
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.