Update README.md
Browse files
README.md
CHANGED
|
@@ -4,4 +4,28 @@ metrics:
|
|
| 4 |
- accuracy
|
| 5 |
- f1
|
| 6 |
---
|
| 7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
- accuracy
|
| 5 |
- f1
|
| 6 |
---
|
| 7 |
+
Returns weather type given an image.
|
| 8 |
+
|
| 9 |
+
See https://www.kaggle.com/code/dima806/weather-types-image-prediction-vit for more details.
|
| 10 |
+
|
| 11 |
+
```
|
| 12 |
+
Classification report:
|
| 13 |
+
|
| 14 |
+
precision recall f1-score support
|
| 15 |
+
|
| 16 |
+
dew 0.9795 0.9897 0.9846 290
|
| 17 |
+
fogsmog 0.9715 0.9414 0.9562 290
|
| 18 |
+
frost 0.9674 0.9207 0.9435 290
|
| 19 |
+
glaze 0.8855 0.9069 0.8961 290
|
| 20 |
+
hail 0.9966 0.9966 0.9966 290
|
| 21 |
+
lightning 1.0000 1.0000 1.0000 290
|
| 22 |
+
rain 0.9561 0.9759 0.9659 290
|
| 23 |
+
rainbow 1.0000 1.0000 1.0000 290
|
| 24 |
+
rime 0.9078 0.8828 0.8951 290
|
| 25 |
+
sandstorm 0.9759 0.9759 0.9759 290
|
| 26 |
+
snow 0.9049 0.9517 0.9277 290
|
| 27 |
+
|
| 28 |
+
accuracy 0.9583 3190
|
| 29 |
+
macro avg 0.9587 0.9583 0.9583 3190
|
| 30 |
+
weighted avg 0.9587 0.9583 0.9583 3190
|
| 31 |
+
```
|