Text Generation
Transformers
GGUF
English
deepseek_v3
deepseek
unsloth
custom_code
fp8
conversational
Instructions to use unsloth/DeepSeek-V3-0324-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/DeepSeek-V3-0324-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/DeepSeek-V3-0324-GGUF", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: llama cli -hf unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF:UD-Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
Use Docker
docker model run hf.co/unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use unsloth/DeepSeek-V3-0324-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/DeepSeek-V3-0324-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-V3-0324-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
- SGLang
How to use unsloth/DeepSeek-V3-0324-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-V3-0324-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-V3-0324-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-V3-0324-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-V3-0324-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/DeepSeek-V3-0324-GGUF with Ollama:
ollama run hf.co/unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
- Unsloth Desktop
- Docker Model Runner
How to use unsloth/DeepSeek-V3-0324-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
- Lemonade
How to use unsloth/DeepSeek-V3-0324-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/DeepSeek-V3-0324-GGUF:UD-Q4_K_XL
Run and chat with the model
lemonade run user.DeepSeek-V3-0324-GGUF-UD-Q4_K_XL
List all available models
lemonade list
- Atomic Chat
Add files using upload-large-folder tool
Browse files- .gitattributes +16 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00001-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00002-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00003-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00004-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00005-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00006-of-00007.gguf +3 -0
- UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00007-of-00007.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00001-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00002-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00003-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00004-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00005-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00006-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00007-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00008-of-00009.gguf +3 -0
- UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00009-of-00009.gguf +3 -0
.gitattributes
CHANGED
|
@@ -126,3 +126,19 @@ BF16/DeepSeek-V3-0324-BF16-00029-of-00030.gguf filter=lfs diff=lfs merge=lfs -te
|
|
| 126 |
BF16/DeepSeek-V3-0324-BF16-00007-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
BF16/DeepSeek-V3-0324-BF16-00008-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
BF16/DeepSeek-V3-0324-BF16-00020-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
BF16/DeepSeek-V3-0324-BF16-00007-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
BF16/DeepSeek-V3-0324-BF16-00008-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
BF16/DeepSeek-V3-0324-BF16-00020-of-00030.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00002-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00003-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 140 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00001-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:caea123845e9bcaa5032e352fcd8a615ad5a0d06f3314434bbf2fcc9a5ac65af
|
| 3 |
+
size 48547650400
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00002-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2f71b9152359b090fd3ef2c9aedf23d52278302a5fa0f7802851264ecee51869
|
| 3 |
+
size 49411303648
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00003-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f7bddc8f251097f299dd74211cf036760e18dea288183156babcb550ff16121c
|
| 3 |
+
size 49411303648
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00004-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:612cb34f95fa3552a01c1c1a9ae664c76e8aa51b2f24aaa8ea93de2562a2f898
|
| 3 |
+
size 49411303648
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00005-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24158bc98b4977fb3c4064ec599d688e21b8483037588b4a301f7e9f517acb21
|
| 3 |
+
size 49411303648
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00006-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb38f388402429c1db2a5f29dcb684ff411ae9585ba435641efc0e3ef5f64c79
|
| 3 |
+
size 49411303648
|
UD-Q3_K_XL/DeepSeek-V3-0324-UD-Q3_K_XL-00007-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f88fc71568a9e2f3d4e1f9e17fdd6c85423b507bc4a92e7f08bbb566a5c28734
|
| 3 |
+
size 25214077728
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00001-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f5eb5dfd4aad0d9a782fed22381146c7be5ab9e07be90bde82f6745faf365946
|
| 3 |
+
size 48401247968
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00002-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ce7c85ab02ccde5cb7fee0a0b67d4e15989a1f45b492fa09c12a18d89289fac
|
| 3 |
+
size 49486048608
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00003-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30adf58f57b73342c34db16c6a49dcc0e6291dd7f0c1c4471795ab6c829e5aea
|
| 3 |
+
size 49589354752
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00004-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d5ef64b6aaf24461fe023b706571ec163454029d5825a93652afda0f79139a68
|
| 3 |
+
size 48325377120
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00005-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e67da4d7577531fdcf24e61fbf364dac8c4dbd5c99fc669e0561cfee8789a59
|
| 3 |
+
size 49482464480
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00006-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1de47b831b49fb0d87fe544086070a80c1bec191683cbe6797a11f30b36fa3eb
|
| 3 |
+
size 48325377120
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00007-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d807247056e0717a4e9edd1899d35b64969054865c2ff625ab3a16aa8743a81
|
| 3 |
+
size 49486048608
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00008-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:041dc2d6a1106a3212d829d2cd0840f6bf50f89ac99196a9fca187afc0c2d023
|
| 3 |
+
size 46976502464
|
UD-Q4_K_XL/DeepSeek-V3-0324-UD-Q4_K_XL-00009-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:563f785959a4c8bf5772df2d4a041e9d6419b924243cfd37b0bb5fadc8b50b08
|
| 3 |
+
size 14803871968
|