mwalmsley commited on
Commit
0e29028
1 Parent(s): 1382573

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md CHANGED
@@ -6,3 +6,14 @@ library_name: timm
6
  license: apache-2.0
7
  ---
8
  # Model card for zoobot-encoder-convnext_large
 
 
 
 
 
 
 
 
 
 
 
 
6
  license: apache-2.0
7
  ---
8
  # Model card for zoobot-encoder-convnext_large
9
+
10
+ Please see the [Zoobot docs](https://zoobot.readthedocs.io/en/latest/pretrained_models.html) for loading and finetuning instructions.
11
+
12
+ But minimally, you can use this like any timm encoder:
13
+
14
+ ```python
15
+ import timm
16
+
17
+ encoder = timm.create_model('hf_hub:mwalmsley/zoobot-encoder-some-name', pretrained=True, num_classes=0)
18
+ ```
19
+