Instructions to use jinaai/jina-clip-implementation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jinaai/jina-clip-implementation with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("jinaai/jina-clip-implementation", dtype="auto") - Notebooks
- Google Colab
- Kaggle
fix: encode_text latency
#9
by dmidmidmi - opened
Switching the condition if not self.tokenizerwhich takes 20~30ms to an explicit if self.tokenizer is None: ( < 1ms)
we were rebuilding the tokenizer each time?
gmastrapas changed pull request status to merged