Instructions to use unsloth/DeepSeek-R1-GGUF-UD with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/DeepSeek-R1-GGUF-UD with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/DeepSeek-R1-GGUF-UD", 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-GGUF-UD", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/DeepSeek-R1-GGUF-UD", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/DeepSeek-R1-GGUF-UD 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-GGUF-UD:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-R1-GGUF-UD: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-GGUF-UD:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-R1-GGUF-UD: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-GGUF-UD:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/DeepSeek-R1-GGUF-UD: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-GGUF-UD:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/DeepSeek-R1-GGUF-UD with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/DeepSeek-R1-GGUF-UD" # 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-GGUF-UD", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
- SGLang
How to use unsloth/DeepSeek-R1-GGUF-UD 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-GGUF-UD" \ --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-GGUF-UD", "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-GGUF-UD" \ --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-GGUF-UD", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/DeepSeek-R1-GGUF-UD with Ollama:
ollama run hf.co/unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
- Unsloth Studio
How to use unsloth/DeepSeek-R1-GGUF-UD with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for unsloth/DeepSeek-R1-GGUF-UD to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for unsloth/DeepSeek-R1-GGUF-UD to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/DeepSeek-R1-GGUF-UD to start chatting
- Docker Model Runner
How to use unsloth/DeepSeek-R1-GGUF-UD with Docker Model Runner:
docker model run hf.co/unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
- Lemonade
How to use unsloth/DeepSeek-R1-GGUF-UD with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/DeepSeek-R1-GGUF-UD:UD-Q4_K_XL
Run and chat with the model
lemonade run user.DeepSeek-R1-GGUF-UD-UD-Q4_K_XL
List all available models
lemonade list
- Atomic Chat
Add files using upload-large-folder tool
Browse files- .gitattributes +16 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00001-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00002-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00003-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00004-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00005-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00006-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00007-of-00008.gguf +3 -0
- IQ4_NL/DeepSeek-R1-IQ4_NL-00008-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00001-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00002-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00003-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00004-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00005-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00006-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00007-of-00008.gguf +3 -0
- IQ4_XS/DeepSeek-R1-IQ4_XS-00008-of-00008.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00001-of-00005.gguf +2 -2
- Q2_K_L/DeepSeek-R1-Q2_K_L-00002-of-00005.gguf +2 -2
- Q2_K_L/DeepSeek-R1-Q2_K_L-00003-of-00005.gguf +2 -2
- Q2_K_L/DeepSeek-R1-Q2_K_L-00004-of-00005.gguf +2 -2
- Q2_K_L/DeepSeek-R1-Q2_K_L-00005-of-00005.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00001-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00002-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00003-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00004-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00005-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00006-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00007-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00008-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00009-of-00010.gguf +2 -2
- Q5_K_M/DeepSeek-R1-Q5_K_M-00010-of-00010.gguf +2 -2
.gitattributes
CHANGED
|
@@ -151,3 +151,19 @@ Q8_0/DeepSeek-R1-Q8_0-00002-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
|
| 151 |
Q8_0/DeepSeek-R1-Q8_0-00007-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
Q8_0/DeepSeek-R1-Q8_0-00005-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
Q8_0/DeepSeek-R1-Q8_0-00006-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
Q8_0/DeepSeek-R1-Q8_0-00007-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
Q8_0/DeepSeek-R1-Q8_0-00005-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
Q8_0/DeepSeek-R1-Q8_0-00006-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 156 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 157 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 158 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 159 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 160 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 161 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 162 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 163 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 164 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 165 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 166 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 167 |
+
IQ4_XS/DeepSeek-R1-IQ4_XS-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 168 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 169 |
+
IQ4_NL/DeepSeek-R1-IQ4_NL-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bebabe8409fdf61f1a71d0d573904460092f602bebaf3a82cdc35f55ec11837
|
| 3 |
+
size 49899601952
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b25fd9ea5f72cd7dc3f1918cfe478295cf998d60993d3b1a89ccba3709cc438e
|
| 3 |
+
size 49745085568
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ba6dd2fd51ea92fb8b06f34e5413718c01506e0b97f3404cf36e0ffaf6b91da
|
| 3 |
+
size 49635606016
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8f8ee1c9cb009abf2bf28beb9de30c97d6449d1a48571bb7a79a16c5edb0a675
|
| 3 |
+
size 49737716736
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16c93acd2bde0c36895c0bfa26f6063d615d7e65a261147b0b518a749bd30878
|
| 3 |
+
size 49745085568
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1243ee17aa52193b574bc55f9e5dbd3484b8b5e5d85662ecb188707a1ffdadfb
|
| 3 |
+
size 49635606016
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f16ec0ca81f9697bfbb447f0560822a3b4e839853bdf0fe9010d7b780bc0a77
|
| 3 |
+
size 49737716736
|
IQ4_NL/DeepSeek-R1-IQ4_NL-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9a399409f0aa108efc4ffb80818d41f2cb34594358720330b55826c8e33ad7c
|
| 3 |
+
size 30185378912
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b8abd4b1a1997d4ff4eebec63f2aeff5bb34de4da24a415e7ac6b24b3aa6bc6a
|
| 3 |
+
size 49221765408
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cb6fa0a765f5899ecb026dcafb9c4280d72647194ad1a5ddcd86c0ba94fe52ff
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f9f95942fc0401046b9736c1355cfbdf34468bcebf9c27e40e2ba621fb46dc7d
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:aa5f0ec64c424dd832be9be62410147e796aae2e371496f4ad5541c9d50f5472
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e04f7937376dc2d42bc7acb81a84bb8a2bea3155578e20f98b028f44d9a415ab
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:276cab1658593070ec78b5076989adea53f4eb2805041bf3555a501bdb76fdb8
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0fa83efc7b6b625ea185aad20d124d4ad9301989b61e7e0f2008eeefb197b257
|
| 3 |
+
size 48995108096
|
IQ4_XS/DeepSeek-R1-IQ4_XS-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f817a995c1abe73c7071e1c1d032bc4884c943f7005c98e5438be2bfb91f4a47
|
| 3 |
+
size 14253064736
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00001-of-00005.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:0dc5e5cf87ef4ca291909847e3dc18d4466bb7328a35a32d7f7d5618a9f87d5b
|
| 3 |
+
size 49679173216
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00002-of-00005.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:fe31c3ff27b46342edc8b6a8a187010f48bdce646a596136487469da91a94aee
|
| 3 |
+
size 48585553600
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00003-of-00005.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:7ff5ab5de23b55c4c6909aecea9246b21a1f893755d3e9dd9ac1675a954d1806
|
| 3 |
+
size 48889205856
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00004-of-00005.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:42e0f5df0287ccbd0402890d4a85caf7a0d1c9beb983bb90ee6d711b8ed25a58
|
| 3 |
+
size 48961357376
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00005-of-00005.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:ce3b2d7451da1f7b36cda95fb72a6606da8323d2fa84225c3bd9e06044850f7e
|
| 3 |
+
size 48506033248
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:0cb733d0f47e280501ef4382dc94cc3736c3f37a4521eb403d9cd6a38fa7715c
|
| 3 |
+
size 49601945632
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:425bc314f2d7524c0c2779e787d2cf8cc34748269eccc53c21b57c05ce6ec5e8
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:590f0d91ba26eeab879acaf6db7ac5197fd89b967322916c2742a77426805e00
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:83629c43044605e6c6425982c03af39207447c20b8a8fb1866f25151df3da270
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:4bfd430157af2653b10fc14c4b4c1cc8d3437af409b70a27c7e2de8e01e0d131
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:af819702c857ebeb69d04d295abf5dd542dab11c53c1e9fb809ee20b254293f8
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:536f6d97a3df0f28d2313d639f648a7c2f5c3d8ecae58757789a84653ae24773
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:51959f47e39965468ae879cfa36941c802acb6c3907ad5b806ae3b8a63863184
|
| 3 |
+
size 48525382624
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:067c64e0c6b0e50776ee74b6e2c7050f90f3a03af54586f89cfd4b75622a7c7f
|
| 3 |
+
size 47427445472
|
Q5_K_M/DeepSeek-R1-Q5_K_M-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:5448e78a7365fb52ad747fd276c09b78fcd69a6ce2e69c4fa5173f1e0dcf1380
|
| 3 |
+
size 38881383520
|