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

mixedbread-ai
/
mxbai-edge-colbert-v0-17m

Sentence Similarity
ONNX
Safetensors
sentence-transformers
Transformers
English
PyLate
modernbert
feature-extraction
ColBERT
multi-vector
Generated from Trainer
Eval Results (legacy)
text-embeddings-inference
Model card Files Files and versions
xet
Community
4

Instructions to use mixedbread-ai/mxbai-edge-colbert-v0-17m with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use mixedbread-ai/mxbai-edge-colbert-v0-17m with sentence-transformers:

    from pylate import models
    
    queries = [
        "Which planet is known as the Red Planet?",
        "What is the largest planet in our solar system?",
    ]
    
    documents = [
        ["Mars is the Red Planet.", "Venus is Earth's twin."],
        ["Jupiter is the largest planet.", "Saturn has rings."],
    ]
    
    model = models.ColBERT(model_name_or_path="mixedbread-ai/mxbai-edge-colbert-v0-17m")
    
    queries_emb = model.encode(queries, is_query=True)
    docs_emb = model.encode(documents, is_query=False)
  • Transformers

    How to use mixedbread-ai/mxbai-edge-colbert-v0-17m with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("mixedbread-ai/mxbai-edge-colbert-v0-17m")
    model = AutoModel.from_pretrained("mixedbread-ai/mxbai-edge-colbert-v0-17m", device_map="auto")
  • Inference
  • Notebooks
  • Google Colab
  • Kaggle
mxbai-edge-colbert-v0-17m
157 MB
Ctrl+K
Ctrl+K
  • 5 contributors
History: 9 commits
SeanLee97's picture
SeanLee97
tomaarsen's picture
tomaarsen HF Staff
Add Sentence Transformers usage (#4)
592c641 21 days ago
  • 1_Dense
    Update 1_Dense/config.json 11 months ago
  • 2_Dense
    Update 2_Dense/config.json 11 months ago
  • .gitattributes
    1.52 kB
    Pre-release 11 months ago
  • README.md
    70.1 kB
    Add Sentence Transformers usage (#4) 21 days ago
  • config.json
    1.25 kB
    Pre-release 11 months ago
  • config_sentence_transformers.json
    760 Bytes
    Pre-release 11 months ago
  • model.onnx
    68 MB
    xet
    fix: Include all Dense projection layers in ONNX export (output dim 48) (#3) 5 months ago
  • model.safetensors
    67.2 MB
    xet
    Pre-release 11 months ago
  • model_int8.onnx
    17.2 MB
    xet
    fix: Include all Dense projection layers in ONNX export (output dim 48) (#3) 5 months ago
  • modules.json
    319 Bytes
    Pre-release 11 months ago
  • onnx_config.json
    803 Bytes
    fix: Include all Dense projection layers in ONNX export (output dim 48) (#3) 5 months ago
  • sentence_bert_config.json
    57 Bytes
    Pre-release 11 months ago
  • special_tokens_map.json
    581 Bytes
    Pre-release 11 months ago
  • tokenizer.json
    3.58 MB
    Pre-release 11 months ago
  • tokenizer_config.json
    21.2 kB
    Pre-release 11 months ago