Update README.md
Browse files
README.md
CHANGED
@@ -5,6 +5,13 @@ tags:
|
|
5 |
library_tag: timm
|
6 |
datasets:
|
7 |
- beans
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
---
|
9 |
# Model card for timm-mobilevitv2_050-beans
|
10 |
|
@@ -12,4 +19,13 @@ This model is a fine-tuned version of mobilevitv2_050 (from timm) on the beans d
|
|
12 |
|
13 |
- Loss: 0.08228
|
14 |
- Accuracy: 0.9850
|
15 |
-
- F1Score: 0.9846
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
library_tag: timm
|
6 |
datasets:
|
7 |
- beans
|
8 |
+
widget:
|
9 |
+
- src: https://huggingface.co/nateraw/vit-base-beans/resolve/main/healthy.jpeg
|
10 |
+
example_title: Healthy
|
11 |
+
- src: https://huggingface.co/nateraw/vit-base-beans/resolve/main/angular_leaf_spot.jpeg
|
12 |
+
example_title: Angular Leaf Spot
|
13 |
+
- src: https://huggingface.co/nateraw/vit-base-beans/resolve/main/bean_rust.jpeg
|
14 |
+
example_title: Bean Rust
|
15 |
---
|
16 |
# Model card for timm-mobilevitv2_050-beans
|
17 |
|
|
|
19 |
|
20 |
- Loss: 0.08228
|
21 |
- Accuracy: 0.9850
|
22 |
+
- F1Score: 0.9846
|
23 |
+
|
24 |
+
## Image normalization
|
25 |
+
|
26 |
+
Imagenet
|
27 |
+
|
28 |
+
```python
|
29 |
+
mean = [0.485, 0.456, 0.406]
|
30 |
+
std = [0.229, 0.224, 0.225]
|
31 |
+
```
|