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

damon6
/
ReasonIR-8B-quantized

Feature Extraction
Transformers
Safetensors
sentence-transformers
English
llama
custom_code
text-embeddings-inference
8-bit precision
bitsandbytes
Model card Files Files and versions
xet
Community

Instructions to use damon6/ReasonIR-8B-quantized with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use damon6/ReasonIR-8B-quantized with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("feature-extraction", model="damon6/ReasonIR-8B-quantized", trust_remote_code=True)
    # Load model directly
    from transformers import AutoTokenizer, AutoModel
    
    tokenizer = AutoTokenizer.from_pretrained("damon6/ReasonIR-8B-quantized", trust_remote_code=True)
    model = AutoModel.from_pretrained("damon6/ReasonIR-8B-quantized", trust_remote_code=True, device_map="auto")
  • sentence-transformers

    How to use damon6/ReasonIR-8B-quantized with sentence-transformers:

    from sentence_transformers import SentenceTransformer
    
    model = SentenceTransformer("damon6/ReasonIR-8B-quantized", 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
ReasonIR-8B-quantized
8.05 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 2 commits
damon6's picture
damon6
Add new SentenceTransformer model
e606be1 verified about 1 year ago
  • 1_Pooling
    Add new SentenceTransformer model about 1 year ago
  • .gitattributes
    1.57 kB
    Add new SentenceTransformer model about 1 year ago
  • README.md
    3.1 kB
    Add new SentenceTransformer model about 1 year ago
  • config.json
    1.42 kB
    Add new SentenceTransformer model about 1 year ago
  • config_sentence_transformers.json
    205 Bytes
    Add new SentenceTransformer model about 1 year ago
  • model-00001-of-00002.safetensors
    5 GB
    xet
    Add new SentenceTransformer model about 1 year ago
  • model-00002-of-00002.safetensors
    3.04 GB
    xet
    Add new SentenceTransformer model about 1 year ago
  • model.safetensors.index.json
    56.7 kB
    Add new SentenceTransformer model about 1 year ago
  • modules.json
    349 Bytes
    Add new SentenceTransformer model about 1 year ago
  • sentence_bert_config.json
    56 Bytes
    Add new SentenceTransformer model about 1 year ago
  • special_tokens_map.json
    449 Bytes
    Add new SentenceTransformer model about 1 year ago
  • tokenizer.json
    17.2 MB
    xet
    Add new SentenceTransformer model about 1 year ago
  • tokenizer_config.json
    50.6 kB
    Add new SentenceTransformer model about 1 year ago