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 +15 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00001-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00002-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00003-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00004-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00005-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00006-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00007-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00008-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00009-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00010-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00011-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00012-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00013-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00014-of-00015.gguf +3 -0
- Q8_0/DeepSeek-V3-0324-Q8_0-00015-of-00015.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,18 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00013-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00011-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00015-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00010-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00014-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00012-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00001-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00002-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00007-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00006-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00004-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00008-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00003-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00009-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Q8_0/DeepSeek-V3-0324-Q8_0-00005-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
Q8_0/DeepSeek-V3-0324-Q8_0-00001-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b5f44cf0cec2a4e2591ff32c117e43caeec047f18caee434cf2fb290e51b8460
|
| 3 |
+
size 47784555232
|
Q8_0/DeepSeek-V3-0324-Q8_0-00002-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fe3a37fc8ed537b8318bea1514ea6be5ac1063e829021a0d740da4f930d60ab
|
| 3 |
+
size 48927727968
|
Q8_0/DeepSeek-V3-0324-Q8_0-00003-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31a8ee605f5b60f60263de10db6c59b704ecf6157082a95827bd42b8d5c4d7e0
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00004-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:737263cf2cd68d4e3b253b5adeab975cb84afa8358f5751fa06f9cd4bd25a50a
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00005-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b477700ef9bbb95e0937559b602ad939e6cb78526cdc8386419cb3910886765a
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00006-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4afd6a5bdfa089de2c60ec1f7713c7215d0e9c33215d10c1b9af0556541e5160
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00007-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b760d5c46356a37566ae594ad1bc0555b655575628208f53f775d71642aae6e1
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00008-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6b4cc76fabefaebee8387e423ee5470549ac883a0e9731a1138898e430fc43e
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00009-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c795cd80d99ec7694b6c306dcdc3085056a888b9c17d8ad7c3041d0346c99a7d
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00010-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1ab30e7e972990be1397c10130e00063eb847a2a4d282d0106969eb529c877d
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00011-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d694fd44410959436ecbb6a073c55a773441fa7a530ab95461d94f93df35f684
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00012-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:57800b15ff908514bf1ac84463ebf8239fe2e518f81fc9a928f8cf892ae67de9
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00013-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a605f9600e1c726b6649c873b0c9705a755fdf48fd21a75f64aaa22c09079e00
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00014-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:df60f71ed38b9f12b3a1ffd982ed00f87de32fbb50d33e13d4e1b75861c06af6
|
| 3 |
+
size 48927728000
|
Q8_0/DeepSeek-V3-0324-Q8_0-00015-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff91c16b82188fc50ec81236916ca87e0ca1484da2b5569a246e21acb0e11d86
|
| 3 |
+
size 29441495520
|