Instructions to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B 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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4 # Run inference directly in the terminal: llama cli -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4 # Run inference directly in the terminal: llama cli -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4 # Run inference directly in the terminal: ./llama-cli -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4 # Run inference directly in the terminal: ./build/bin/llama-cli -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
Use Docker
docker model run hf.co/VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
- LM Studio
- Jan
- Ollama
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with Ollama:
ollama run hf.co/VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
- Unsloth Studio
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B 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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B 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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for VECTORVV1/DeepSeek-R1-Distill-Qwen-14B to start chatting
- Pi
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
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": "VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with Docker Model Runner:
docker model run hf.co/VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
- Lemonade
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
Run and chat with the model
lemonade run user.DeepSeek-R1-Distill-Qwen-14B-MXFP4
List all available models
lemonade list
- Hermes Agent
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
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 VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use VECTORVV1/DeepSeek-R1-Distill-Qwen-14B with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "VECTORVV1/DeepSeek-R1-Distill-Qwen-14B:MXFP4" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Duplicate from HauhauCS/GPT-OSS-20B-Uncensored-HauhauCS-Aggressive
Browse filesCo-authored-by: HauHau <HauhauCS@users.noreply.huggingface.co>
- .gitattributes +36 -0
- GPT-OSS-20B-Uncensored-HauhauCS-MXFP4-Aggressive.gguf +3 -0
- README.md +36 -0
.gitattributes
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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 |
+
GPT-OSS-20B-Uncensored-HauhauCS-MXFP4-Aggressive.gguf filter=lfs diff=lfs merge=lfs -text
|
GPT-OSS-20B-Uncensored-HauhauCS-MXFP4-Aggressive.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04109404f1f8e7cc056a8501a4fbf3639772dbea991b04d43f4e5fd989e57965
|
| 3 |
+
size 12109565888
|
README.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
base_model: gpt-oss-20b
|
| 4 |
+
tags:
|
| 5 |
+
- uncensored
|
| 6 |
+
- abliterated
|
| 7 |
+
- gguf
|
| 8 |
+
- mxfp4
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# GPT-OSS-20B-Uncensored-HauhauCS-Aggressive
|
| 14 |
+
|
| 15 |
+
> **[Join the Discord](https://discord.gg/SZ5vacTXYf)** for updates, roadmaps, projects, or just to chat.
|
| 16 |
+
|
| 17 |
+
Uncensored version of GPT-OSS 20B. This is the aggressive variant - tuned harder for fewer refusals.
|
| 18 |
+
|
| 19 |
+
If you want something more conservative, check out the [Balanced variant](https://huggingface.co/HauhauCS/GPT-OSS-20B-Uncensored-HauhauCS-Balanced).
|
| 20 |
+
|
| 21 |
+
## Format
|
| 22 |
+
|
| 23 |
+
MXFP4 GGUF. Works with llama.cpp, ollama, LM Studio, and anything else that loads GGUFs.
|
| 24 |
+
|
| 25 |
+
## LM Studio
|
| 26 |
+
|
| 27 |
+
Compatible with Reasoning Effort custom buttons. To use them, put the model in:
|
| 28 |
+
```
|
| 29 |
+
LM Models\lmstudio-community\gpt-oss-20b-GGUF\
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## About
|
| 33 |
+
|
| 34 |
+
- Base model: GPT-OSS 20B
|
| 35 |
+
- Abliterated with custom tooling
|
| 36 |
+
- Pick this one if you want maximum uncensoring
|