Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

jinaai
/
jina-embeddings-v3

Feature Extraction
Transformers
PyTorch
ONNX
Safetensors
sentence-transformers
sentence-similarity
mteb
custom_code
Eval Results (legacy)
Eval Results
🇪🇺 Region: EU
Model card Files Files and versions
xet
Community
142

Instructions to use jinaai/jina-embeddings-v3 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use jinaai/jina-embeddings-v3 with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("feature-extraction", model="jinaai/jina-embeddings-v3", trust_remote_code=True)
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("jinaai/jina-embeddings-v3", trust_remote_code=True, device_map="auto")
  • sentence-transformers

    How to use jinaai/jina-embeddings-v3 with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("jinaai/jina-embeddings-v3", trust_remote_code=True)
    
    sentences = [
        "The weather is lovely today.",
        "It's so sunny outside!",
        "He drove to the stadium."
    ]
    embeddings = model.encode(sentences)
    
    similarities = model.similarity(embeddings, embeddings)
    print(similarities.shape)
    # [3, 3]
  • Notebooks
  • Google Colab
  • Kaggle
jina-embeddings-v3
5.75 GB
Ctrl+K
Ctrl+K
  • 10 contributors
History: 67 commits
michael-guenther's picture
michael-guenther
Integrate with Sentence Transformers v5.4 (#139)
ab036b0 5 months ago
  • 1_Pooling
    feat: add pooling config for sbert (#7) about 2 years ago
  • onnx
    Update ONNX weights (#24) almost 2 years ago
  • .gitattributes
    1.67 kB
    Update ONNX weights (#24) almost 2 years ago
  • README.md
    734 kB
    feat-add-cmteb-qbqtc (#115) over 1 year ago
  • config.json
    1.8 kB
    Update config.json almost 2 years ago
  • config_sentence_transformers.json
    464 Bytes
    Update README.md (#17) about 2 years ago
  • custom_st.py
    8.88 kB
    Integrate with Sentence Transformers v5.4 (#139) 5 months ago
  • model.safetensors
    1.14 GB
    xet
    Adding `safetensors` variant of this model (#20) almost 2 years ago
  • modules.json
    378 Bytes
    feat: finetuning via ST (#42) almost 2 years ago
  • pytorch_model.bin

    Detected Pickle imports (3)

    • "collections.OrderedDict",
    • "torch._utils._rebuild_tensor_v2",
    • "torch.BFloat16Storage"

    What is a pickle import?

    1.14 GB
    xet
    upload files about 2 years ago
  • special_tokens_map.json
    964 Bytes
    upload files about 2 years ago
  • tokenizer.json
    17.1 MB
    xet
    Upload tokenizer.json about 2 years ago
  • tokenizer_config.json
    1.15 kB
    upload files about 2 years ago