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-32m

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

Instructions to use mixedbread-ai/mxbai-edge-colbert-v0-32m 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-32m 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-32m")
    
    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-32m with Transformers:

    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("mixedbread-ai/mxbai-edge-colbert-v0-32m")
    model = AutoModel.from_pretrained("mixedbread-ai/mxbai-edge-colbert-v0-32m", device_map="auto")
  • Inference
  • Notebooks
  • Google Colab
  • Kaggle
mxbai-edge-colbert-v0-32m
300 MB
Ctrl+K
Ctrl+K
  • 5 contributors
History: 10 commits
SeanLee97's picture
SeanLee97
tomaarsen's picture
tomaarsen HF Staff
Add Sentence Transformers usage (#3)
bb13a29 about 1 month ago
  • 1_Dense
    Pre-release 11 months ago
  • 2_Dense
    Pre-release 11 months ago
  • 3_Dense
    Pre-release 11 months ago
  • .gitattributes
    1.52 kB
    Pre-release 11 months ago
  • README.md
    49.7 kB
    Add Sentence Transformers usage (#3) about 1 month ago
  • config.json
    1.25 kB
    Pre-release 11 months ago
  • config_sentence_transformers.json
    760 Bytes
    Pre-release 11 months ago
  • model.onnx
    131 MB
    xet
    fix: Include all Dense projection layers in ONNX export (output dim 64) (#2) 5 months ago
  • model.safetensors
    128 MB
    xet
    Pre-release 11 months ago
  • model_int8.onnx
    33.2 MB
    xet
    fix: Include all Dense projection layers in ONNX export (output dim 64) (#2) 5 months ago
  • modules.json
    422 Bytes
    Pre-release 11 months ago
  • onnx_config.json
    803 Bytes
    fix: Include all Dense projection layers in ONNX export (output dim 64) (#2) 5 months ago
  • sentence_bert_config.json
    56 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