Instructions to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF", dtype="auto") - llama-cpp-python
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF", filename="DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.IQ4_XS.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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Use Docker
docker model run hf.co/mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Ollama:
ollama run hf.co/mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
- Unsloth Studio
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-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 mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF to start chatting
- Pi
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Docker Model Runner:
docker model run hf.co/mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
- Lemonade
How to use mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull mradermacher/DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured-GGUF-Q4_K_M
List all available models
lemonade list
uploaded from kaos
Browse files- .gitattributes +12 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.IQ4_XS.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q2_K.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_L.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_M.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_S.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q4_K_M.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q4_K_S.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q5_K_M.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q5_K_S.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q6_K.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q8_0.gguf +3 -0
- DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.f16.gguf +3 -0
|
@@ -33,3 +33,15 @@ 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 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
DeepSeek-R1-Qwen-2.5-1.5b-Latest-Unstructured-To-Structured.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b53e88102fae5bdc29ef8385fe662a9ed8147f24e02b5cf8a709920ffc3caaf6
|
| 3 |
+
size 1026163520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e30330af3c8b62418fa9492c7bc4b7ee10d93536379361df97e8f545575f7700
|
| 3 |
+
size 752881472
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97dd58520b3654ae28078142097b6b957ffb1f5b1474d171efca456c157da1fc
|
| 3 |
+
size 980441408
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77d3a287e6bab355ecb82c8aa582c85347930411c0866d43d3e80422dc0bdc3e
|
| 3 |
+
size 924457280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:788bb5875290acbf45f75f8337083ce893d779e4eafddbed0406594f482eef99
|
| 3 |
+
size 861223232
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92248fbf44a336776060a5cc1fd2e2dae5d720251f82c3f8952c12391231f5d2
|
| 3 |
+
size 1117322048
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c17469fc711466a4a0e1cb85e0f42aa66d84d98607fb73dd2e7793b4f95b6c83
|
| 3 |
+
size 1071586112
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15978559ab66883861137eaed6054e05b0f2b763e622a769466492103bf68d3c
|
| 3 |
+
size 1285495616
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:81a4f5538fb1bc6e86e1fb140894d8592c2c535213bb793762ac017a37e940e8
|
| 3 |
+
size 1259174720
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:67d6eaf966fc13d783d34e35b347604cb2f2b6b813c03014f510bba8ca4141d6
|
| 3 |
+
size 1464180032
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3805b485f9912eca83bf9b94d7a04353b6e1275c57b7450823a8957130fdf537
|
| 3 |
+
size 1894533440
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88f68bbd31a315f65bff3a398247a6676c7e2df20725e68637d13ee6e344afde
|
| 3 |
+
size 3560417600
|