MVRL
/

Srikumar26 commited on
Commit
6061697
·
verified ·
1 Parent(s): ee725b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -0
README.md CHANGED
@@ -6,3 +6,20 @@ pipeline_tag: zero-shot-image-classification
6
  license: mit
7
  ---
8
  # Model card for taxabind-vit-b-16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  license: mit
7
  ---
8
  # Model card for taxabind-vit-b-16
9
+
10
+ ## Paper: TaxaBind: A Unified Embedding Space for Ecological Applications <br>
11
+ ## Venue: WACV 2025 <br>
12
+ ## Github: https://github.com/mvrl/TaxaBind
13
+
14
+ ## TaxaBind
15
+
16
+ TaxaBind is a multimodal embedding space consisting of six modalities. This model contains image and text modalities in `open_clip` format. The model is used for zero-shot classification of species images using taxonomic text classes.
17
+
18
+ ## Usage
19
+
20
+ ```python
21
+ import open_clip
22
+
23
+ model, preprocess_train, preprocess_val = open_clip.create_model_and_transforms('hf-hub:MVRL/taxabind-vit-b-16')
24
+ tokenizer = open_clip.get_tokenizer('hf-hub:MVRL/taxabind-vit-b-16')
25
+ ```