Update README.md
Browse files
README.md
CHANGED
@@ -31,7 +31,7 @@ It has the following specifications:
|
|
31 |
|
32 |
* Model: ViT-B/32
|
33 |
* Input: RBG image of 640x640 pixels
|
34 |
-
* Output/embedding layer size:
|
35 |
* Training loss: TripletSemiHardLoss (see [TensorFlow.org](https://www.tensorflow.org/addons/tutorials/losses_triplet)) with batch size 10 (2 anchors, 2 positives, 2 negatives)
|
36 |
* Fixed learning rate of 0.000015 with Adam optimizer
|
37 |
* Epochs: 100
|
@@ -94,11 +94,11 @@ Overall, we find that the model performs very well for classes that are present
|
|
94 |
|
95 |
| Metric | Worst-case (without text filter) | Best-case (without text filter) | Worst-case (with text filter) | Best-case (with text filter) |
|
96 |
|--------------|------------|-----------|------------|-----------|
|
97 |
-
| Accuracy @ 1 | 0.
|
98 |
-
| Accuracy @ 3 | 0.
|
99 |
-
| Accuracy @ 5 | 0.
|
100 |
-
| Accuracy @ 10| 0.
|
101 |
-
| Accuracy @ 25| 0.
|
102 |
|
103 |
### _Mock snippets_
|
104 |
|
@@ -107,7 +107,7 @@ Overall, we find that the model performs very well for classes that are present
|
|
107 |
| Accuracy @ 1 | 0.99 | 0.99 |
|
108 |
| Accuracy @ 3 | 0.99 | 1.00 |
|
109 |
| Accuracy @ 5 | 0.99 | 1.00 |
|
110 |
-
| Accuracy @ 10|
|
111 |
| Accuracy @ 25| 1.00 | 1.00 |
|
112 |
|
113 |
Note that the final model is trained on all data, so we expect performance to increase somewhat as compared to these metrics.
|
|
|
31 |
|
32 |
* Model: ViT-B/32
|
33 |
* Input: RBG image of 640x640 pixels
|
34 |
+
* Output/embedding layer size: 256
|
35 |
* Training loss: TripletSemiHardLoss (see [TensorFlow.org](https://www.tensorflow.org/addons/tutorials/losses_triplet)) with batch size 10 (2 anchors, 2 positives, 2 negatives)
|
36 |
* Fixed learning rate of 0.000015 with Adam optimizer
|
37 |
* Epochs: 100
|
|
|
94 |
|
95 |
| Metric | Worst-case (without text filter) | Best-case (without text filter) | Worst-case (with text filter) | Best-case (with text filter) |
|
96 |
|--------------|------------|-----------|------------|-----------|
|
97 |
+
| Accuracy @ 1 | 0.22 | 0.99 | 0.63 | 1.00 |
|
98 |
+
| Accuracy @ 3 | 0.31 | 1.00 | 0.80 | 1.00 |
|
99 |
+
| Accuracy @ 5 | 0.63 | 1.00 | 0.91 | 1.00 |
|
100 |
+
| Accuracy @ 10| 0.76 | 1.00 | 0.92 | 1.00 |
|
101 |
+
| Accuracy @ 25| 0.86 | 1.00 | 0.96 | 1.00 |
|
102 |
|
103 |
### _Mock snippets_
|
104 |
|
|
|
107 |
| Accuracy @ 1 | 0.99 | 0.99 |
|
108 |
| Accuracy @ 3 | 0.99 | 1.00 |
|
109 |
| Accuracy @ 5 | 0.99 | 1.00 |
|
110 |
+
| Accuracy @ 10| 1.00 | 1.00 |
|
111 |
| Accuracy @ 25| 1.00 | 1.00 |
|
112 |
|
113 |
Note that the final model is trained on all data, so we expect performance to increase somewhat as compared to these metrics.
|