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

darcar0
/
quotebound-27b

Text Generation
Transformers
Safetensors
PEFT
English
reasoning
evidence-grounding
grounded-qa
attribution
fever
hotpotqa
lora
distillation
research
conversational
Model card Files Files and versions
xet
Community

Instructions to use darcar0/quotebound-27b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use darcar0/quotebound-27b with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="darcar0/quotebound-27b")
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("darcar0/quotebound-27b", dtype="auto")
  • PEFT

    How to use darcar0/quotebound-27b with PEFT:

    Task type is invalid.
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use darcar0/quotebound-27b with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "darcar0/quotebound-27b"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "darcar0/quotebound-27b",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/darcar0/quotebound-27b
  • SGLang

    How to use darcar0/quotebound-27b with SGLang:

    Install from pip and serve model
    # Install SGLang from pip:
    pip install sglang
    # Start the SGLang server:
    python3 -m sglang.launch_server \
        --model-path "darcar0/quotebound-27b" \
        --host 0.0.0.0 \
        --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "darcar0/quotebound-27b",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker images
    docker run --gpus all \
        --shm-size 32g \
        -p 30000:30000 \
        -v ~/.cache/huggingface:/root/.cache/huggingface \
        --env "HF_TOKEN=<secret>" \
        --ipc=host \
        lmsysorg/sglang:latest \
        python3 -m sglang.launch_server \
            --model-path "darcar0/quotebound-27b" \
            --host 0.0.0.0 \
            --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "darcar0/quotebound-27b",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use darcar0/quotebound-27b with Docker Model Runner:

    docker model run hf.co/darcar0/quotebound-27b
quotebound-27b
180 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 23 commits
darcar0's picture
darcar0
Upload release asset assets/benchmark_progression.svg
f141053 verified 24 days ago
  • assets
    Upload release asset assets/benchmark_progression.svg 24 days ago
  • .gitattributes
    1.65 kB
    Upload evidence_faithful_reasoning_release_brief.pdf with huggingface_hub about 1 month ago
  • README.md
    9.57 kB
    Polish model card structure and copy 24 days ago
  • adapter_config.json
    1.09 kB
    Initial private pilot 3 adapter upload about 1 month ago
  • adapter_model.safetensors
    159 MB
    xet
    Initial private pilot 3 adapter upload about 1 month ago
  • benchmark_progression.svg
    7.03 kB
    Rebrand public release to Quotebound 27B about 1 month ago
  • chat_template.jinja
    7.76 kB
    Initial private pilot 3 adapter upload about 1 month ago
  • evidence_faithful_reasoning_release_brief.md
    4.79 kB
    Simplify public release surfaces around the technical note about 1 month ago
  • standalone_holdout_comparison.svg
    8.21 kB
    Rebrand public release to Quotebound 27B about 1 month ago
  • technical_note_evidence_faithful_reasoning.md
    12.7 kB
    Upload release asset technical_note_evidence_faithful_reasoning.md 24 days ago
  • tokenizer.json
    20 MB
    xet
    Initial private pilot 3 adapter upload about 1 month ago
  • tokenizer_config.json
    1.1 kB
    Initial private pilot 3 adapter upload about 1 month ago