File size: 455 Bytes
9bad7d2
 
 
 
 
 
 
 
2e37bdf
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
tags:
- image-classification
- timm
library_name: timm
license: apache-2.0
---
# Model card for zoobot-encoder-convnext_nano


Please see the [Zoobot docs](https://zoobot.readthedocs.io/en/latest/pretrained_models.html) for loading and finetuning instructions.

But minimally, you can use this like any timm encoder:

```python
import timm

encoder = timm.create_model('hf_hub:mwalmsley/zoobot-encoder-some-name', pretrained=True, num_classes=0)
```