Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
# Animal Recognition Model
|
| 3 |
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- image-classification
|
| 4 |
+
- tensorflow
|
| 5 |
+
- keras
|
| 6 |
+
- computer-vision
|
| 7 |
+
- animal-recognition
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
library_name: keras
|
| 10 |
+
language: en
|
| 11 |
+
datasets:
|
| 12 |
+
- custom-dataset
|
| 13 |
+
metrics:
|
| 14 |
+
- accuracy
|
| 15 |
+
model_creator: AEROVERSE
|
| 16 |
+
model_type: Custom CNN
|
| 17 |
+
num_classes: 10
|
| 18 |
+
training_data: Custom animal dataset
|
| 19 |
+
validation_split: 20%
|
| 20 |
+
epochs: 500
|
| 21 |
+
early_stopping: patience=5, restore_best_weights=True
|
| 22 |
+
dropout: 0.5
|
| 23 |
+
optimizer: Adam
|
| 24 |
+
loss: sparse_categorical_crossentropy
|
| 25 |
+
input_shape: (256, 256, 3)
|
| 26 |
+
output_activation: softmax
|
| 27 |
+
checkpoint: best_model.weights.h5
|
| 28 |
+
---
|
| 29 |
|
| 30 |
# Animal Recognition Model
|
| 31 |
|