JamesJayamuni
commited on
Commit
•
9e18a88
1
Parent(s):
c36be0d
Update README.md
Browse files
README.md
CHANGED
@@ -9,4 +9,54 @@ tags:
|
|
9 |
- flower
|
10 |
- image classification
|
11 |
- resnet50
|
12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
- flower
|
10 |
- image classification
|
11 |
- resnet50
|
12 |
+
---
|
13 |
+
|
14 |
+
|
15 |
+
# flower_image_classification_ResNet50_v1.0
|
16 |
+
|
17 |
+
This model is a fine-tuned version of Keras ResNet50 on the tf_flower dataset (https://www.tensorflow.org/datasets/catalog/tf_flowers).
|
18 |
+
It achieves the following results on the evaluation set:
|
19 |
+
- Loss: 0.7941
|
20 |
+
- Accuracy: 0.8571
|
21 |
+
|
22 |
+
## Model description
|
23 |
+
|
24 |
+
A slightly customized image classification model for classify 5 labels of flowers ('daisy', 'dandelion', 'roses', 'sunflowers', 'tulips')
|
25 |
+
|
26 |
+
## Intended uses & limitations
|
27 |
+
|
28 |
+
This model is fined tune solely for flower image classification.
|
29 |
+
|
30 |
+
## Training and evaluation data
|
31 |
+
|
32 |
+
More information needed
|
33 |
+
|
34 |
+
## Training procedure
|
35 |
+
|
36 |
+
### Training hyperparameters
|
37 |
+
|
38 |
+
The following hyperparameters were used during training:
|
39 |
+
- learning_rate: 1e-03
|
40 |
+
- train_batch_size: 8
|
41 |
+
- eval_batch_size: 8
|
42 |
+
- seed: 1
|
43 |
+
- optimizer: Adam
|
44 |
+
- loss: categorical_crossentropy
|
45 |
+
- num_epochs: 5
|
46 |
+
|
47 |
+
### Fine-Tuning Results
|
48 |
+
|
49 |
+
| Epoch | Step | Training Loss | Accuracy | Validation Loss | Validation Accuracy|
|
50 |
+
|:-----:|:-----:|:---------------:|:--------:|:---------------:|:------------------:|
|
51 |
+
| 1.0 | 345 | 13.9143 | 0.6478 | 0.5310 | 0.8288 |
|
52 |
+
| 2.0 | 690 | 0.2639 | 0.9161 | 0.6046 | 0.8419 |
|
53 |
+
| 3.0 | 1035 | 0.1369 | 0.9539 | 0.5483 | 0.8561 |
|
54 |
+
| 4.0 | 1380 | 0.0863 | 0.9703 | 0.5699 | 0.8659 |
|
55 |
+
| 5.0 | 1725 | 0.0686 | 0.9837 | 0.7941 | 0.8571 |
|
56 |
+
|
57 |
+
|
58 |
+
### Framework versions
|
59 |
+
|
60 |
+
- Transformers 4.41.2
|
61 |
+
- Pytorch 2.3.0
|
62 |
+
- opencv-contrib-python-4.10.0.82
|