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
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

Duplicated from  Qwen/Qwen3-Embedding-0.6B

Content-AI
/
Qwen3-Embedding-0.6B

Feature Extraction
sentence-transformers
Safetensors
Transformers
qwen3
text-generation
sentence-similarity
text-embeddings-inference
Model card Files Files and versions
xet
Community

Instructions to use Content-AI/Qwen3-Embedding-0.6B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • sentence-transformers

    How to use Content-AI/Qwen3-Embedding-0.6B with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("Content-AI/Qwen3-Embedding-0.6B")
    
    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]
  • Transformers

    How to use Content-AI/Qwen3-Embedding-0.6B with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("feature-extraction", model="Content-AI/Qwen3-Embedding-0.6B")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("Content-AI/Qwen3-Embedding-0.6B")
    model = AutoModelForCausalLM.from_pretrained("Content-AI/Qwen3-Embedding-0.6B")
  • Notebooks
  • Google Colab
  • Kaggle
Qwen3-Embedding-0.6B / 1_Pooling
Ctrl+K
Ctrl+K
  • 2 contributors
History: 1 commit
Content-AI's picture
Content-AI
Duplicate from Qwen/Qwen3-Embedding-0.6B
eb9ddc2 25 days ago
  • config.json
    313 Bytes
    Duplicate from Qwen/Qwen3-Embedding-0.6B 25 days ago