Instructions to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF", dtype="auto") - MLX
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir DeepSeek-R1-Distill-Qwen-14B-GGUF tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF
- llama-cpp-python
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF", filename="DeepSeek-R1-Distill-Qwen-14B-Q2_K.gguf", )
llm.create_chat_completion( messages = "No input example has been defined for this model task." )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-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 tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
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 tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
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 tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
- LM Studio
- Jan
- Ollama
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with Ollama:
ollama run hf.co/tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF 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 tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF 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 tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
- Lemonade
How to use tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/DeepSeek-R1-Distill-Qwen-14B-GGUF:Q2_K
Run and chat with the model
lemonade run user.DeepSeek-R1-Distill-Qwen-14B-GGUF-Q2_K
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- DeepSeek-R1-Distill-Qwen-14B-Q2_K.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q3_K_L.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q3_K_M.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q3_K_S.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q4_0.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q4_K_S.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q5_0.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q5_K_M.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q5_K_S.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q6_K.gguf +2 -2
- DeepSeek-R1-Distill-Qwen-14B-Q8_0.gguf +2 -2
- README.md +7 -5
DeepSeek-R1-Distill-Qwen-14B-Q2_K.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:9c455ec6df638cb2ab50fa5aecf0865ad1ad2846058b9294e362d044a3efbae7
|
| 3 |
+
size 5770497536
|
DeepSeek-R1-Distill-Qwen-14B-Q3_K_L.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:b27aaa81a1d47b169fd453837c2dd8934b9ecf8e3534b1ff6a10ebf5461e3ace
|
| 3 |
+
size 7924768256
|
DeepSeek-R1-Distill-Qwen-14B-Q3_K_M.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:0581832bab6d3d56cc13776c9d609e1bbaddcdd8bbae782a5781302355a2a3c3
|
| 3 |
+
size 7339204096
|
DeepSeek-R1-Distill-Qwen-14B-Q3_K_S.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:5564a917f5fde18fea695233d79f8dec908c980fbac3c58cb9679f699405f12b
|
| 3 |
+
size 6659595776
|
DeepSeek-R1-Distill-Qwen-14B-Q4_0.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:a363ccf8b23575f38dc4c87162e18141dc4ee2eefd25ea19bdf711650d28e93a
|
| 3 |
+
size 8517725696
|
DeepSeek-R1-Distill-Qwen-14B-Q4_K_M.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:34384a268ba02c8d62d0147a47ff63629d0d74dbe821ce3c76ec07d1637fc6da
|
| 3 |
+
size 8988110336
|
DeepSeek-R1-Distill-Qwen-14B-Q4_K_S.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:f32015fc149588d3a0fda93e108ff63d369d84c0985a7acbdc9860eab85c5cac
|
| 3 |
+
size 8573431296
|
DeepSeek-R1-Distill-Qwen-14B-Q5_0.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:a1237424dff5b958459750ee6b3f585356fe902ad901e67fb0a6a90ffd7f6d5d
|
| 3 |
+
size 10266553856
|
DeepSeek-R1-Distill-Qwen-14B-Q5_K_M.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:1137ff7db186f43f73eb13b11c9dfe3b020c28e4248ee2601abde0d850e68e21
|
| 3 |
+
size 10508873216
|
DeepSeek-R1-Distill-Qwen-14B-Q5_K_S.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:10d8fc0e5a99a8ede0d3b9a50679e5c29a3a7c6151ec0e86caef61cdbc9f158a
|
| 3 |
+
size 10266553856
|
DeepSeek-R1-Distill-Qwen-14B-Q6_K.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:45292e81c764e2e7fc22f28d30f381cedda806249d16565df1e994a2079f2c6c
|
| 3 |
+
size 12124683776
|
DeepSeek-R1-Distill-Qwen-14B-Q8_0.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:3e2bab18bd44f253461ddf3c2e53089ffe56d049bb9a7fcc0e65d9b246b208fc
|
| 3 |
+
size 15701597696
|
README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
tags:
|
|
|
|
| 4 |
- TensorBlock
|
| 5 |
- GGUF
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
<div style="width: auto; margin-left: auto; margin-right: auto">
|
|
@@ -16,11 +18,11 @@ tags:
|
|
| 16 |
</div>
|
| 17 |
</div>
|
| 18 |
|
| 19 |
-
##
|
| 20 |
|
| 21 |
-
This repo contains GGUF format model files for [
|
| 22 |
|
| 23 |
-
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit
|
| 24 |
|
| 25 |
<div style="text-align: left; margin: 20px 0;">
|
| 26 |
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
|
@@ -31,7 +33,7 @@ The files were quantized using machines provided by [TensorBlock](https://tensor
|
|
| 31 |
## Prompt template
|
| 32 |
|
| 33 |
```
|
| 34 |
-
<|begin▁of▁sentence|>{system_prompt}<|User|>{prompt}<|Assistant|>
|
| 35 |
```
|
| 36 |
|
| 37 |
## Model file specification
|
|
|
|
| 1 |
---
|
| 2 |
+
library_name: transformers
|
| 3 |
tags:
|
| 4 |
+
- mlx
|
| 5 |
- TensorBlock
|
| 6 |
- GGUF
|
| 7 |
+
base_model: mlx-community/DeepSeek-R1-Distill-Qwen-14B
|
| 8 |
---
|
| 9 |
|
| 10 |
<div style="width: auto; margin-left: auto; margin-right: auto">
|
|
|
|
| 18 |
</div>
|
| 19 |
</div>
|
| 20 |
|
| 21 |
+
## mlx-community/DeepSeek-R1-Distill-Qwen-14B - GGUF
|
| 22 |
|
| 23 |
+
This repo contains GGUF format model files for [mlx-community/DeepSeek-R1-Distill-Qwen-14B](https://huggingface.co/mlx-community/DeepSeek-R1-Distill-Qwen-14B).
|
| 24 |
|
| 25 |
+
The files were quantized using machines provided by [TensorBlock](https://tensorblock.co/), and they are compatible with llama.cpp as of [commit b4823](https://github.com/ggml-org/llama.cpp/commit/5bbe6a9fe9a8796a9389c85accec89dbc4d91e39).
|
| 26 |
|
| 27 |
<div style="text-align: left; margin: 20px 0;">
|
| 28 |
<a href="https://tensorblock.co/waitlist/client" style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold;">
|
|
|
|
| 33 |
## Prompt template
|
| 34 |
|
| 35 |
```
|
| 36 |
+
<|begin▁of▁sentence|>{system_prompt}<|User|>{prompt}<|Assistant|><think>
|
| 37 |
```
|
| 38 |
|
| 39 |
## Model file specification
|