Feature Extraction
Transformers
Safetensors
Transformers.js
English
jina_clip
sentence-similarity
mteb
clip
vision
custom_code
Instructions to use bwang0911/test-jina-clip with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bwang0911/test-jina-clip with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="bwang0911/test-jina-clip", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("bwang0911/test-jina-clip", trust_remote_code=True, dtype="auto") - Transformers.js
How to use bwang0911/test-jina-clip with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('feature-extraction', 'bwang0911/test-jina-clip'); - Notebooks
- Google Colab
- Kaggle