How to use from the
Use from the
llama-cpp-python library
# !pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
	repo_id="bobchenyx/DeepSeek-R1-0528-HFK-GGUF",
	filename="",
)
llm.create_chat_completion(
	messages = [
		{
			"role": "user",
			"content": "What is the capital of France?"
		}
	]
)

Llamacpp Quantizations of DeepSeek-R1-0528 (MLA version)

Original model: Adopting BF16 & Imatrix from unsloth/DeepSeek-R1-0528-GGUF.

  • Expert 2-bit : 210.78 GiB (2.70 BPW)

  • Expert 2-bit(XL) : 215.90 GiB (2.76 BPW)

Download Guide

# !pip install huggingface_hub hf_transfer
import os
os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "1"
from huggingface_hub import snapshot_download
snapshot_download(
    repo_id = "bobchenyx/DeepSeek-R1-0528-HFK-GGUF",
    local_dir = "bobchenyx/DeepSeek-R1-0528-HFK-GGUF",
    allow_patterns = ["*Q2_K*"],
)
Downloads last month
2
GGUF
Model size
671B params
Architecture
deepseek2
Hardware compatibility
Log In to add your hardware

2-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for bobchenyx/DeepSeek-R1-0528-HFK-GGUF

Quantized
(45)
this model

Collection including bobchenyx/DeepSeek-R1-0528-HFK-GGUF