Instructions to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF", dtype="auto") - llama-cpp-python
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF", filename="RoguePlanet-DeepSeek-R1-Qwen-32B-Q2_K.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K # Run inference directly in the terminal: llama cli -hf tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K # Run inference directly in the terminal: ./llama-cli -hf tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
Use Docker
docker model run hf.co/tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
- LM Studio
- Jan
- vLLM
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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": "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
- SGLang
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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 "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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": "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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 "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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": "tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with Ollama:
ollama run hf.co/tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
- Unsloth Studio
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-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/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with Docker Model Runner:
docker model run hf.co/tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
- Lemonade
How to use tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull tensorblock/RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF:Q2_K
Run and chat with the model
lemonade run user.RoguePlanet-DeepSeek-R1-Qwen-32B-GGUF-Q2_K
List all available models
lemonade list
Remove .gguf files (keep Q2_K.gguf)
Browse files- RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_L.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_M.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_S.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_0.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_K_M.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_K_S.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_0.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_K_M.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_K_S.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q6_K.gguf +0 -3
- RoguePlanet-DeepSeek-R1-Qwen-32B-Q8_0.gguf +0 -3
RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_L.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:35a8259af1825a7258f479499db98a11604cab8bfd760986fcb73ff46360f367
|
| 3 |
-
size 17247080896
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d36280ce38687bfa8fdbb2b957b2ad9718b4ef3bcc1a659d405e870aa4d996bb
|
| 3 |
-
size 15935050176
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q3_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:487a9204caf1e2fa7e2f28db12596be22dd37f776f82656c0b65563d8f8b2e0b
|
| 3 |
-
size 14392332736
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:86afbcd88e176b695231988f284795a68b649b950c6bc826f7b5bda00aac73f7
|
| 3 |
-
size 18640232896
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:53879f583009604b4afc81f4880d2d76c02bcf2dc35fd96a09bde9d53a2de959
|
| 3 |
-
size 19851338176
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q4_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:68a1137f3fe45a770bac42dad34224f97cc453d843bf28d520ab658b4d8789c8
|
| 3 |
-
size 18784412096
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6cae82a625976cf7780a821b2bebfe2b8d0967bccebab6f124982492328596dd
|
| 3 |
-
size 22638256576
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_K_M.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3a6571d459bd9afb2766613e626bb034be992bf7f6f2c5f89b43a6daf7b5d9fe
|
| 3 |
-
size 23262159296
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q5_K_S.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:94898b4df68429aebb1e4df70b5a66b12e399e094a9de389cd497ca1d52e6d55
|
| 3 |
-
size 22638256576
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q6_K.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b08a087ad335f076abac04e5e52a5b1e58359eca676ad4f7bb5e3ba7385a7275
|
| 3 |
-
size 26886156736
|
|
|
|
|
|
|
|
|
|
|
|
RoguePlanet-DeepSeek-R1-Qwen-32B-Q8_0.gguf
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:af865c3bec5505bb6aaabdc163bf14a985841ec64ed1673c28da5076d4482fe7
|
| 3 |
-
size 34820886976
|
|
|
|
|
|
|
|
|
|
|
|