File size: 1,992 Bytes
202a4d9
 
 
 
 
 
 
7b1a8d5
202a4d9
 
 
 
 
7b1a8d5
202a4d9
 
 
 
7b1a8d5
 
202a4d9
 
 
 
 
 
 
 
 
7b1a8d5
202a4d9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63

---
tags:
- image-classification
- ecology
- fungi
- FGVC
library_name: FungiTastic
license: cc-by-nc-4.0
---
# Model card for BVRA/beit_base_patch16_224.in1k_ft_df24_224

## Model Details
- **Model Type:** Fine-grained classification of fungi species 
- **Model Stats:**
  - Params (M): 87.9
  - Image size: 224 x 224
- **Papers:**
  - **Original:** --> https://openreview.net/pdf?id=p-BhZSz59o4
  - **Train Dataset:** FungiTastic --> https://github.com/bohemianvra/FungiTastic

## Model Usage
### Image Embeddings
```python
import timm
import torch
import torchvision.transforms as T
from PIL import Image
from urllib.request import urlopen
model = timm.create_model("hf-hub:BVRA/beit_base_patch16_224.in1k_ft_fungitastic_224", pretrained=True)
model = model.eval()
train_transforms = T.Compose([T.Resize((224, 224)), 
                              T.ToTensor(), 
                              T.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5])]) 
img = Image.open(PATH_TO_YOUR_IMAGE)
output = model(train_transforms(img).unsqueeze(0))
# output is a (1, num_features) shaped tensor
```

## Citation 
```bibtex
@InProceedings{Picek_2022_WACV,
    author    = {Picek, Luk'a{s} and {S}ulc, Milan and Matas, Ji{r}{'\i} and Jeppesen, Thomas S. and Heilmann-Clausen, Jacob and L{e}ss{\o}e, Thomas and Fr{\o}slev, Tobias},
    title     = {Danish Fungi 2020 - Not Just Another Image Recognition Dataset},
    booktitle = {Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision (WACV)},
    month     = {January},
    year      = {2022},
    pages     = {1525-1535}
}
```
```bibtex
@article{picek2022automatic,
  title={Automatic Fungi Recognition: Deep Learning Meets Mycology},
  author={Picek, Luk{'a}{{s}} and {{S}}ulc, Milan and Matas, Ji{{r}}{'\i} and Heilmann-Clausen, Jacob and Jeppesen, Thomas S and Lind, Emil},
  journal={Sensors},
  volume={22},
  number={2},
  pages={633},
  year={2022},
  publisher={Multidisciplinary Digital Publishing Institute}
}
```