Instructions to use unsloth/DeepSeek-R1-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/DeepSeek-R1-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="unsloth/DeepSeek-R1-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-GGUF", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("unsloth/DeepSeek-R1-GGUF", trust_remote_code=True) - llama-cpp-python
How to use unsloth/DeepSeek-R1-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="unsloth/DeepSeek-R1-GGUF", filename="DeepSeek-R1-BF16/DeepSeek-R1.BF16-00001-of-00030.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use unsloth/DeepSeek-R1-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M
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:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M
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:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/DeepSeek-R1-GGUF:Q4_K_M
Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use unsloth/DeepSeek-R1-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-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-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/DeepSeek-R1-GGUF:Q4_K_M
- SGLang
How to use unsloth/DeepSeek-R1-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-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-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-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-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use unsloth/DeepSeek-R1-GGUF with Ollama:
ollama run hf.co/unsloth/DeepSeek-R1-GGUF:Q4_K_M
- Unsloth Studio new
How to use unsloth/DeepSeek-R1-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 unsloth/DeepSeek-R1-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 unsloth/DeepSeek-R1-GGUF 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 to start chatting
- Docker Model Runner
How to use unsloth/DeepSeek-R1-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/DeepSeek-R1-GGUF:Q4_K_M
- Lemonade
How to use unsloth/DeepSeek-R1-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/DeepSeek-R1-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.DeepSeek-R1-GGUF-Q4_K_M
List all available models
lemonade list
Atlas
#51
by odlmonk69 - opened
This view is limited to 50 files because it contains too many changes. See the raw diff here.
- BF16/DeepSeek-R1-BF16-00001-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00002-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00003-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00004-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00005-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00006-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00007-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00008-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00009-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00010-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00011-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00012-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00013-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00014-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00015-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00016-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00017-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00018-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00019-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00020-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00021-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00022-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00023-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00024-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00025-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00026-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00027-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00028-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00029-of-00030.gguf +3 -0
- BF16/DeepSeek-R1-BF16-00030-of-00030.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00001-of-00005.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00002-of-00005.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00003-of-00005.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00004-of-00005.gguf +3 -0
- Q2_K_L/DeepSeek-R1-Q2_K_L-00005-of-00005.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00001-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00002-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00003-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00004-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00005-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00006-of-00007.gguf +3 -0
- Q3_K_M/DeepSeek-R1-Q3_K_M-00007-of-00007.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00001-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00002-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00003-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00004-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00005-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00006-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00007-of-00010.gguf +3 -0
- Q5_K_M/DeepSeek-R1-Q5_K_M-00008-of-00010.gguf +3 -0
BF16/DeepSeek-R1-BF16-00001-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fb00c1c60f8d523ffc9f856490ad185c56696cbcb4e536412c5c0e2856d148ad
|
| 3 |
+
size 43879929024
|
BF16/DeepSeek-R1-BF16-00002-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72aad965a69541afe4399d2ce582a86d738877dbfa45ec13ed1a6cf3781efaa3
|
| 3 |
+
size 46036554112
|
BF16/DeepSeek-R1-BF16-00003-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4521180f3476948e3805083befe33f1947d1e229ec16da9e6fe87c74d50ed32
|
| 3 |
+
size 46036554112
|
BF16/DeepSeek-R1-BF16-00004-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac1cd710bd334188212bc18f0224b37759c1a27c452eecd59f9dc93c6be0a9fd
|
| 3 |
+
size 46036554112
|
BF16/DeepSeek-R1-BF16-00005-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93a48544c4ee5da420abcfd13ca1631341efb1f209315e5d144e02bd8b56e51e
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00006-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89fbdf0231c8977c08a0de4653120940be430789b4250e1ed543ff7a4275b9fb
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00007-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dba2054605b77543dd80307d9bffe087594b3c6efddae1e1bf4c0f980782c6b7
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00008-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1f4006b64e5ede0fe1d1e296aa2cfff42365dcf013d0e493af8653129e16797
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00009-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c79d62148ed326a5fca19e6cc75186135d5300ceac2019cce13247915a01c45
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00010-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d991c00e43438fe7ed85810e82280ec702ab79201ecbe4eaac1d4961e242f1db
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00011-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67789533157cd6ecb13879bbd9ad517b04bd2425ec6a756dd715577c43284f9c
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00012-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f0e0f93d4106ab54edcab960353c4e540708896e029bd4a0ddb44eb5d90fba1
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00013-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d5ab9b289239ae8bae25be28e2b23135e81dff26508a5ad04606284f4530e4d
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00014-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:159694b0b1d3a3beade3b81e25faa6884b6acc7a513aa8af8cdcaf360a4e8a95
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00015-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92991170d6d55a36dcc4e6155b3f8a82888da50dd15386fa23fa4bbf5dd8bb60
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00016-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0da7538917a3ed9a2633acfcf3bc85d5e857df0ec13cc7e8a2800c104a6687eb
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00017-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f44d81d5410ec0bd5e13c60bc059dcc313af8885ee98b8566a84d7c74701389d
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00018-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db0c624f80cc32f774796cacf7ba2ff7665ca1a508d68aa9ac8275f251969aea
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00019-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1e795f3e23bfb527fa450ddda93a72e72b6434936a68c125df816e196c1adc63
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00020-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6c21bdedd27dad6044f61ec2dbe4e108e8e3ae275fd7d29fd9d722df87b93a02
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00021-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:474e68440b882181c3c2dc7efcd223fd8859e8c785334ba641c6363e65fb5cab
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00022-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:71fa0b32bad36c0ec9d4554761b0b84aa181b66ff9a830f2c609e2dfa539c7ca
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00023-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4d2ba25229c2dbda04d0aa2fc4e99b719d14b67aeac8bd65cac79d05b8c2331
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00024-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99a510f4de87dcec1d0e506bf03407f54ea67829da2502c43af04ef3dbe7fc91
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00025-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b68e99cca06218500efb2459cb8d786f5f71db94941e09e3f1d64e159622bf87
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00026-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15042292f14a0d27fe69cbbae750d1fbc7e5cf78b0005ba18bf277798b74e296
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00027-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b14a83b263c346c0375d03c57e906baa523cffd9877b97d22e9ed951d3a564d2
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00028-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7092813c2f2b798b062bc1ce68649a9576b15fc600ea2322ae0816bcecb614b5
|
| 3 |
+
size 46036554144
|
BF16/DeepSeek-R1-BF16-00029-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1756e28f9550ae247be49b982d6e0d2e23e60f73df0ab5e7f899446cd2dceea2
|
| 3 |
+
size 47889912288
|
BF16/DeepSeek-R1-BF16-00030-of-00030.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c6eebf41181988a4d58deff4e0930f81cb63993e500899cd0361b6e24fd58e03
|
| 3 |
+
size 7516250400
|
Q2_K_L/DeepSeek-R1-Q2_K_L-00001-of-00005.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ce3b2d7451da1f7b36cda95fb72a6606da8323d2fa84225c3bd9e06044850f7e
|
| 3 |
+
size 48506033248
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00001-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1ac5d811140a624d859fd575e9bc32586a8e96f8759de7d08332f8538f06b6ae
|
| 3 |
+
size 49717873088
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00002-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eff6a629c4720b5bd9811bfd1f884330f2ecf34a04cba0a128f24cb742867963
|
| 3 |
+
size 49258143648
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00003-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a0b748681f4f3a6aad9a2cc5b681ea25363307cf522b57db8cea337d7476a53
|
| 3 |
+
size 49258143648
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00004-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:374855ed09cc30d031c2aed6eb489fc664bedd991fa0ae5ea686bfc71d7a2d05
|
| 3 |
+
size 49258143648
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00005-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8cffc260f708d529899c52c3bce499ddbb87968a077641496132a6a485168ac2
|
| 3 |
+
size 49258143648
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00006-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:45be4a7529018e016e62be6e6eb432ad473d96ae2539325e448cac59336d6227
|
| 3 |
+
size 49258143648
|
Q3_K_M/DeepSeek-R1-Q3_K_M-00007-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd8a390e11ba21629bc5885c748310057e73f71826608fe8c0104fe5c06380d2
|
| 3 |
+
size 23513623360
|
Q5_K_M/DeepSeek-R1-Q5_K_M-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:51959f47e39965468ae879cfa36941c802acb6c3907ad5b806ae3b8a63863184
|
| 3 |
+
size 48525382624
|