Text Generation
Transformers
GGUF
English
deepseek_v3
deepseek
unsloth
custom_code
fp8
imatrix
conversational
Instructions to use unsloth/DeepSeek-R1-0528-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/DeepSeek-R1-0528-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/DeepSeek-R1-0528-GGUF", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("unsloth/DeepSeek-R1-0528-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/DeepSeek-R1-0528-GGUF", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/DeepSeek-R1-0528-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/DeepSeek-R1-0528-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/DeepSeek-R1-0528-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/DeepSeek-R1-0528-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/DeepSeek-R1-0528-GGUF 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 "unsloth/DeepSeek-R1-0528-GGUF" \ --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": "unsloth/DeepSeek-R1-0528-GGUF", "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 "unsloth/DeepSeek-R1-0528-GGUF" \ --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": "unsloth/DeepSeek-R1-0528-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/DeepSeek-R1-0528-GGUF with Ollama:
ollama run hf.co/unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
- Unsloth Desktop
- Pi
How to use unsloth/DeepSeek-R1-0528-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/DeepSeek-R1-0528-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/DeepSeek-R1-0528-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.DeepSeek-R1-0528-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use unsloth/DeepSeek-R1-0528-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/DeepSeek-R1-0528-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "unsloth/DeepSeek-R1-0528-GGUF:UD-Q4_K_XL" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Commit ·
4569eec
1
Parent(s): 09fce8c
Upload folder using huggingface_hub
Browse files- .gitattributes +46 -0
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00001-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00002-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00003-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00004-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00005-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00006-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00007-of-00008.gguf +2 -2
- Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00008-of-00008.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00001-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00002-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00003-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00004-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00005-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00006-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00007-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00008-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00009-of-00010.gguf +2 -2
- Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00010-of-00010.gguf +2 -2
.gitattributes
CHANGED
|
@@ -186,3 +186,49 @@ Q4_1/DeepSeek-R1-0528-Q4_1-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -te
|
|
| 186 |
Q4_1/DeepSeek-R1-0528-Q4_1-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 187 |
Q4_1/DeepSeek-R1-0528-Q4_1-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 188 |
Q4_1/DeepSeek-R1-0528-Q4_1-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 186 |
Q4_1/DeepSeek-R1-0528-Q4_1-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 187 |
Q4_1/DeepSeek-R1-0528-Q4_1-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 188 |
Q4_1/DeepSeek-R1-0528-Q4_1-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 189 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 190 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 191 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 192 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 193 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 194 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 195 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 196 |
+
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 197 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 198 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 199 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 200 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 201 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 202 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 203 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 204 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 205 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 206 |
+
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 207 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00001-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 208 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00002-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 209 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00003-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 210 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00004-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 211 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00005-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 212 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00006-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 213 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00007-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 214 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00008-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 215 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00009-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 216 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00010-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 217 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00011-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 218 |
+
UD-Q6_K_XL/DeepSeek-R1-0528-UD-Q6_K_XL-00012-of-00012.gguf filter=lfs diff=lfs merge=lfs -text
|
| 219 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00001-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 220 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00002-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 221 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00003-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 222 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00004-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 223 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00005-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 224 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00006-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 225 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00007-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 226 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00008-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 227 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00009-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 228 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00010-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 229 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00011-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 230 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00012-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 231 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00013-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 232 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 233 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 234 |
+
UD-Q8_K_XL/DeepSeek-R1-0528-UD-Q8_K_XL-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00001-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:914670c1617039c94a262c649294284656888068918f360083703101d94ad53f
|
| 3 |
+
size 49759486208
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00002-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96bea65ce9969c47859b9f969248f3245b902ffada980d094743041da137f396
|
| 3 |
+
size 49664966144
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00003-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c0732778c0768ffc045aa2559a449a31e0744ac9b844560130af67800232907b
|
| 3 |
+
size 49771271168
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00004-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5a301206f6ebd84d316d3558f6269c63b076d18395f5181402877d1c494a43c7
|
| 3 |
+
size 49778640000
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00005-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e573a33c37eea5c6494e52f325b8be8e47c148560df65f5cc5a9148a69407e7
|
| 3 |
+
size 49664966144
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00006-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f21cfdab6166fde52d6ba8b1534d949f059c2d42c10d2acb1a3d395f1e2c79f
|
| 3 |
+
size 49771271168
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00007-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc32987201ceafe26c34c43bb60253db47be2c81d2bc65de64b9c196581c0717
|
| 3 |
+
size 49778640000
|
Q4_K_S/DeepSeek-R1-0528-Q4_K_S-00008-of-00008.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3146550a8279b8cb7b60bac3e942d4af9d239d239bd7f5bd899164f89196122
|
| 3 |
+
size 32324343008
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00001-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a91f2b4e19009a37b9ba05a86d49779572ecc9effd1682670d3627231f832e89
|
| 3 |
+
size 47573328256
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00002-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b6be5b7b120fad5dd913c15250f8253177ccece86d5e189fd376372788d2c5b8
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00003-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9d247be0001aaf5a8aface7705fa20d245d06667114052ddfbea3744713b19c
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00004-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c71bc394e8b132fddfb63d66e7646ccaeca2f01a315a323f81795b40e3c37d92
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00005-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8316abaa38d6f9e59404ef8460a6c7a10a0cd589ea698105e5ac1defa1653938
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00006-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8234962e5d0ce5ff7fd20eac650ed01d94790045ba2419e2362f9dfb51b58ad
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00007-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4c34c6dad22026590ff110a7a8576ca118680b395dbb38d632b3ad058f1b70f
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00008-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:333cf68522849d93c53e481cb8ac6568538b72a4a84af4397f8627fb13bc5e01
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00009-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:195db087bfe9f256ec835bb1198b2cf1dc5604aa7efdbfb08e2b8872729b3671
|
| 3 |
+
size 47542113248
|
Q5_K_S/DeepSeek-R1-0528-Q5_K_S-00010-of-00010.gguf
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7124b600226ee0d8a31a6b2cfa0b00eef881ab75871b6941c33f4cba979d9b1c
|
| 3 |
+
size 34288526144
|