Image-Text-to-Text
GGUF
English
Chinese
abliterated
qwen
qwen3
qwen3.8
llama.cpp
uncensored
ai-red-team
red-teaming
vision-language
mmproj
mtp
function-calling
reasoning
imatrix
conversational
Instructions to use dancinlab/Qwen3.8-27B-Uncensored-GGUF 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 dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dancinlab/Qwen3.8-27B-Uncensored-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": "dancinlab/Qwen3.8-27B-Uncensored-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
- Ollama
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with Ollama:
ollama run hf.co/dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with Docker Model Runner:
docker model run hf.co/dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
- Lemonade
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.8-27B-Uncensored-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-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 dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use dancinlab/Qwen3.8-27B-Uncensored-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M
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 "dancinlab/Qwen3.8-27B-Uncensored-GGUF:Q4_K_M" \ --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"
Mirror orcarouter/Qwen3.8-27B-Uncensored-GGUF@b33b15636fce4621fd1c3499bb5c9681465fb626
Browse files- .gitattributes +18 -0
- Qwen3.8-27B-Uncensored-F16-00001-of-00002.gguf +3 -0
- Qwen3.8-27B-Uncensored-F16-00002-of-00002.gguf +3 -0
- Qwen3.8-27B-Uncensored-IQ2_M.gguf +3 -0
- Qwen3.8-27B-Uncensored-IQ2_XXS.gguf +3 -0
- Qwen3.8-27B-Uncensored-IQ3_M.gguf +3 -0
- Qwen3.8-27B-Uncensored-IQ3_XXS.gguf +3 -0
- Qwen3.8-27B-Uncensored-IQ4_XS.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q2_K.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q3_K_L.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q3_K_M.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q3_K_S.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q4_K_M.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q4_K_S.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q5_K_M.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q5_K_S.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q6_K.gguf +3 -0
- Qwen3.8-27B-Uncensored-Q8_0.gguf +3 -0
- README.md +245 -0
- mmproj-Qwen3.8-27B-Uncensored-f16.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,21 @@ 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 |
+
Qwen3.8-27B-Uncensored-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.8-27B-Uncensored-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.8-27B-Uncensored-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.8-27B-Uncensored-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3.8-27B-Uncensored-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3.8-27B-Uncensored-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
mmproj-Qwen3.8-27B-Uncensored-f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3.8-27B-Uncensored-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3.8-27B-Uncensored-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3.8-27B-Uncensored-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3.8-27B-Uncensored-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3.8-27B-Uncensored-F16-00001-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3.8-27B-Uncensored-F16-00002-of-00002.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3.8-27B-Uncensored-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3.8-27B-Uncensored-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3.8-27B-Uncensored-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3.8-27B-Uncensored-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Qwen3.8-27B-Uncensored-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3.8-27B-Uncensored-F16-00001-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:578926d4e6d94281e95a48d8e154c4667061a669e9016f2aa2b15101ab4363dc
|
| 3 |
+
size 27908108288
|
Qwen3.8-27B-Uncensored-F16-00002-of-00002.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c15e78454caec46b19dae22fa6915a9e77b917e7cceffdc64c265801f4eaa1f1
|
| 3 |
+
size 26749625920
|
Qwen3.8-27B-Uncensored-IQ2_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b7e77fd57bb9bd0162bb80b839e3484ec06af3e9016f456e762c73fe9b570f9
|
| 3 |
+
size 10455914080
|
Qwen3.8-27B-Uncensored-IQ2_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3ac5d52238b28dce25b1fe4b4e759ca0f51b89864d4e2b6ea1e8135716ba136
|
| 3 |
+
size 8884504160
|
Qwen3.8-27B-Uncensored-IQ3_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:045ca1b0396bda8591e8b6f8c616c54ab2e6c4e0aea0275e5107d1eccf6204ec
|
| 3 |
+
size 12768331360
|
Qwen3.8-27B-Uncensored-IQ3_XXS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0d91ad7b2c57f545a030b1d391375a5f9a822423b90923d91cf744e717e80d03
|
| 3 |
+
size 11637692000
|
Qwen3.8-27B-Uncensored-IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c52df3e4289da6e24aa20665f2a88e9347aa1ce08f2bfe0a58cc9e578845e0af
|
| 3 |
+
size 15309039200
|
Qwen3.8-27B-Uncensored-Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85f17d3779fbc16507ebdc8efab9f7cbe42a7a30488f4029179a1c5471e0c088
|
| 3 |
+
size 10864592256
|
Qwen3.8-27B-Uncensored-Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e9572d9ea6c180dac37b027987476ee5cc93e12946f7b242c8dfa1cdc0f7842d
|
| 3 |
+
size 14559798656
|
Qwen3.8-27B-Uncensored-Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2bdecffabba9fedd93f383ce834b2d185db32a7fa0cc6cddbbadcf56097cd4ae
|
| 3 |
+
size 13500736896
|
Qwen3.8-27B-Uncensored-Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9f07e69b0f15942a028461aca88361294fa2a40a845b1648096cfad668cdffc
|
| 3 |
+
size 12256535936
|
Qwen3.8-27B-Uncensored-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3445102e9cde5d562508642c100a2f5ac3368a5a3f748442811d7a95daee3bec
|
| 3 |
+
size 16810714496
|
Qwen3.8-27B-Uncensored-Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a9f8fe94324af5c8bf5fd4f0be3d24424c914707d399c514733710375c3cb6fa
|
| 3 |
+
size 15825298816
|
Qwen3.8-27B-Uncensored-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0e42ef33bcf9974730119fa59ff6b065fdd52080a664728afa0902cb358a301b
|
| 3 |
+
size 19535701376
|
Qwen3.8-27B-Uncensored-Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:650b40ba96e1993923293d2db9a8697e13a8e37867b6c3586c97d896905ed24a
|
| 3 |
+
size 18971682176
|
Qwen3.8-27B-Uncensored-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a0d6fe2e48417f1571a57a7104b4d5da0c45c3d00de18fa7aa48affca5a24d7
|
| 3 |
+
size 22430999936
|
Qwen3.8-27B-Uncensored-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:31756fca94beca71ea4b8706d6fdc896dab2a3c6376ab0c1863b98512a24f8d6
|
| 3 |
+
size 29047084416
|
README.md
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model: Qwen/Qwen3.8-27B
|
| 4 |
+
base_model_relation: quantized
|
| 5 |
+
pipeline_tag: image-text-to-text
|
| 6 |
+
library_name: gguf
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
- zh
|
| 10 |
+
tags:
|
| 11 |
+
- abliterated
|
| 12 |
+
- qwen
|
| 13 |
+
- qwen3
|
| 14 |
+
- qwen3.8
|
| 15 |
+
- gguf
|
| 16 |
+
- llama.cpp
|
| 17 |
+
- uncensored
|
| 18 |
+
- ai-red-team
|
| 19 |
+
- red-teaming
|
| 20 |
+
- vision-language
|
| 21 |
+
- mmproj
|
| 22 |
+
- mtp
|
| 23 |
+
- function-calling
|
| 24 |
+
- reasoning
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
<div align="center">
|
| 28 |
+
|
| 29 |
+
<a href="https://www.orcarouter.ai" target="_blank">
|
| 30 |
+
<img src="https://www.orcarouter.ai/orca-logo-classic.png" alt="OrcaRouter" width="110">
|
| 31 |
+
</a>
|
| 32 |
+
|
| 33 |
+
<h1>Qwen3.8-27B-Uncensored-GGUF</h1>
|
| 34 |
+
|
| 35 |
+
<p><em>GGUF quants (2-bit β 16-bit) of the abliterated (refusal-removed) Qwen3.8-27B β for llama.cpp</em></p>
|
| 36 |
+
|
| 37 |
+
<p>
|
| 38 |
+
<a href="https://www.orcarouter.ai"><img src="https://img.shields.io/badge/Website-orcarouter.ai-1E6FEB" alt="Website"></a>
|
| 39 |
+
<a href="https://www.orcarouter.ai/models"><img src="https://img.shields.io/badge/OrcaRouter-Model%20Catalog-2EA043" alt="Model Catalog"></a>
|
| 40 |
+
<a href="https://www.orcarouter.ai/models/qwen/qwen3.8-27b"><img src="https://img.shields.io/badge/OrcaRouter-Model%20Card-6F42C1" alt="Model Card"></a>
|
| 41 |
+
<a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-4C8BF5" alt="License"></a>
|
| 42 |
+
<img src="https://img.shields.io/badge/Format-GGUF-00A67E" alt="GGUF">
|
| 43 |
+
<img src="https://img.shields.io/badge/Quants-Q2__K%20%E2%86%92%20F16-FF8800" alt="Quants">
|
| 44 |
+
<img src="https://img.shields.io/badge/Vision-mmproj-9B59B6" alt="Vision">
|
| 45 |
+
</p>
|
| 46 |
+
|
| 47 |
+
<p><strong>One Gateway. Every Model.</strong> β Route Smarter Β· Ship Safer Β· Spend Less.</p>
|
| 48 |
+
|
| 49 |
+
<p>
|
| 50 |
+
<a href="https://www.orcarouter.ai">Website</a> Β·
|
| 51 |
+
<a href="https://www.orcarouter.ai/models">Model Catalog</a> Β·
|
| 52 |
+
<a href="https://www.orcarouter.ai/models/qwen/qwen3.8-27b">Model Card</a> Β·
|
| 53 |
+
<a href="https://github.com/Continuum-AI-Corp">GitHub</a> Β·
|
| 54 |
+
<a href="https://ollama.com/orcarouter">Ollama</a> Β·
|
| 55 |
+
<a href="https://discord.gg/yAh6Tex6kx">Discord</a> Β·
|
| 56 |
+
<a href="https://x.com/OrcaRouter">X</a>
|
| 57 |
+
|
| 58 |
+
</p>
|
| 59 |
+
|
| 60 |
+
</div>
|
| 61 |
+
|
| 62 |
+
---
|
| 63 |
+
|
| 64 |
+
> **GGUF conversions** of [`Qwen3.8-27B-Uncensored`](https://huggingface.co/orcarouter/Qwen3.8-27B-Uncensored-FP8)
|
| 65 |
+
> β an **abliterated** (refusal-removed) build of Qwen's `Qwen3.8-27B`, a 27B dense hybrid-attention
|
| 66 |
+
> (Gated DeltaNet linear + full attention) native vision-language model with reasoning, tool-calling,
|
| 67 |
+
> and an MTP speculative-decoding head. These files run in **llama.cpp** (CPU / CUDA / Metal / ROCm),
|
| 68 |
+
> quantized from **2-bit to 16-bit**, with a separate **mmproj** file that restores **vision**.
|
| 69 |
+
> Browse all models in the [OrcaRouter Model Catalog](https://www.orcarouter.ai/models). Qwen3.8 27B is
|
| 70 |
+
> deployed as API [on OrcaRouter](https://www.orcarouter.ai/models/qwen/qwen3.8-27b).
|
| 71 |
+
|
| 72 |
+
---
|
| 73 |
+
|
| 74 |
+
## β οΈ Disclaimer β read before use
|
| 75 |
+
|
| 76 |
+
This model has had its **safety alignment substantially removed** via *abliteration* (orthogonalizing
|
| 77 |
+
the refusal direction out of the residual stream). It will **comply with harmful, unethical, or illegal
|
| 78 |
+
requests** the original `Qwen3.8-27B` would refuse. Released **strictly for legitimate research** β
|
| 79 |
+
interpretability, AI-safety / refusal-mechanism study, red-teaming, and robustness evaluation. **You
|
| 80 |
+
assume full responsibility** for how you use it and everything it generates; add your own safety and
|
| 81 |
+
moderation layers before any deployment. Use must comply with the
|
| 82 |
+
[Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0) inherited from the base model and all
|
| 83 |
+
applicable law. The authors accept **no liability** for misuse.
|
| 84 |
+
|
| 85 |
+
---
|
| 86 |
+
|
| 87 |
+
## Requirements
|
| 88 |
+
|
| 89 |
+
- **A recent [llama.cpp](https://github.com/ggml-org/llama.cpp)** built from source (the `qwen35`
|
| 90 |
+
hybrid-GDN architecture and the **MTP / `nextn`** speculative head β merged 2026-05 β must be present).
|
| 91 |
+
Older releases will not load these files.
|
| 92 |
+
- The GDN linear-attention layers are stored as SSM-style tensors (`ssm_*`); full-attention layers as
|
| 93 |
+
`attn_*`; the MTP head as block `nextn.*` (`qwen35.nextn_predict_layers`).
|
| 94 |
+
|
| 95 |
+
## Files
|
| 96 |
+
|
| 97 |
+
### Standard K-quants
|
| 98 |
+
|
| 99 |
+
| File | Bits | Size | Notes / recommendation |
|
| 100 |
+
|---|---|---:|---|
|
| 101 |
+
| `β¦-Q2_K.gguf` | 2-bit | 10.9 GB | Smallest K-quant; noticeable quality drop β low-VRAM only |
|
| 102 |
+
| `β¦-Q3_K_S.gguf`| 3-bit | 12.3 GB | |
|
| 103 |
+
| `β¦-Q3_K_M.gguf`| 3-bit | 13.5 GB | Good small option |
|
| 104 |
+
| `β¦-Q3_K_L.gguf`| 3-bit | 14.6 GB | |
|
| 105 |
+
| `β¦-Q4_K_S.gguf`| 4-bit | 15.8 GB | |
|
| 106 |
+
| **`β¦-Q4_K_M.gguf`** | 4-bit | 16.8 GB | **Recommended default** β best quality/size balance |
|
| 107 |
+
| `β¦-Q5_K_S.gguf`| 5-bit | 17.7 GB | |
|
| 108 |
+
| `β¦-Q5_K_M.gguf`| 5-bit | 18.2 GB | High quality |
|
| 109 |
+
| `β¦-Q6_K.gguf` | 6-bit | 20.9 GB | Very high quality |
|
| 110 |
+
| `β¦-Q8_0.gguf` | 8-bit | 27.1 GB | Near-lossless |
|
| 111 |
+
| `β¦-F16-0000*-of-00002.gguf` | 16-bit | 54.7 GB | Full precision (split into 2 parts; point llama.cpp at part 00001) |
|
| 112 |
+
|
| 113 |
+
### IQ quants (imatrix)
|
| 114 |
+
|
| 115 |
+
Lower-bit quants built with an **importance matrix** (computed on English + Chinese calibration
|
| 116 |
+
text) β better quality-per-bit than plain K-quants at the low end, especially IQ3/IQ2.
|
| 117 |
+
|
| 118 |
+
| File | Bits | Size | Notes / recommendation |
|
| 119 |
+
|---|---|---:|---|
|
| 120 |
+
| **`β¦-IQ4_XS.gguf`** | ~4.25-bit | 15.3 GB | **Best low-bit pick** β β Q4_K_S quality at smaller size |
|
| 121 |
+
| `β¦-IQ3_M.gguf` | ~3.7-bit | 12.8 GB | Solid 3-bit |
|
| 122 |
+
| `β¦-IQ3_XXS.gguf` | ~3.1-bit | 11.6 GB | Smaller 3-bit |
|
| 123 |
+
| `β¦-IQ2_M.gguf` | ~2.7-bit | 10.5 GB | Runs in low VRAM; some quality loss |
|
| 124 |
+
| `β¦-IQ2_XXS.gguf` | ~2.1-bit | 8.9 GB | Smallest runnable; most degraded |
|
| 125 |
+
|
| 126 |
+
### Vision
|
| 127 |
+
|
| 128 |
+
| File | Size | Notes |
|
| 129 |
+
|---|---:|---|
|
| 130 |
+
| **`mmproj-β¦-f16.gguf`** | 0.9 GB | **Vision projector β download this too for image input** |
|
| 131 |
+
|
| 132 |
+
All quants (K-quant and IQ) preserve the **MTP (`nextn`) head** and the **GDN hybrid architecture**;
|
| 133 |
+
vision is provided by the separate `mmproj` file. The **IQ** files were quantized with an importance
|
| 134 |
+
matrix (computed on English + Chinese calibration text) for better low-bit fidelity; the matrix
|
| 135 |
+
itself is not shipped, as it is only needed to re-quantize these files, not to run them.
|
| 136 |
+
|
| 137 |
+
## Usage (llama.cpp)
|
| 138 |
+
|
| 139 |
+
### Download
|
| 140 |
+
|
| 141 |
+
```bash
|
| 142 |
+
hf download orcarouter/Qwen3.8-27B-Uncensored-GGUF \
|
| 143 |
+
Qwen3.8-27B-Uncensored-Q4_K_M.gguf mmproj-Qwen3.8-27B-Uncensored-f16.gguf \
|
| 144 |
+
--local-dir ./qwen38-uncensored
|
| 145 |
+
```
|
| 146 |
+
|
| 147 |
+
### Chat (text)
|
| 148 |
+
|
| 149 |
+
```bash
|
| 150 |
+
./llama-cli -m Qwen3.8-27B-Uncensored-Q4_K_M.gguf --jinja -c 8192 -p "Hello!"
|
| 151 |
+
```
|
| 152 |
+
|
| 153 |
+
### OpenAI-compatible server (tool calling + reasoning + vision)
|
| 154 |
+
|
| 155 |
+
```bash
|
| 156 |
+
./llama-server -m Qwen3.8-27B-Uncensored-Q4_K_M.gguf \
|
| 157 |
+
--mmproj mmproj-Qwen3.8-27B-Uncensored-f16.gguf \
|
| 158 |
+
--host 0.0.0.0 --port 8000 -c 8192 --jinja
|
| 159 |
+
```
|
| 160 |
+
|
| 161 |
+
- **Vision:** pass `--mmproj β¦`, then send OpenAI `image_url` content parts (base64 data-URI or URL).
|
| 162 |
+
- **Tool calling:** `--jinja` enables the Qwen tool template; use standard OpenAI `tools` + `tool_calls`.
|
| 163 |
+
- **Reasoning (thinking):** thinking is on by default; toggle per request via
|
| 164 |
+
`chat_template_kwargs.enable_thinking`. The reasoning trace is returned in `reasoning_content`
|
| 165 |
+
(give `max_tokens` room, e.g. β₯ 2048, so the final answer isn't truncated by the thinking budget).
|
| 166 |
+
- **MTP speculative decoding:** the `nextn` head is embedded; enable llama.cpp's MTP/speculative path
|
| 167 |
+
for a decode speed-up (optional β the model runs fine without it).
|
| 168 |
+
|
| 169 |
+
### Or skip llama.cpp β run it with Ollama
|
| 170 |
+
|
| 171 |
+
The same quants are published as Ollama tags, with the `mmproj` projector already bundled in (no second
|
| 172 |
+
file, no `--mmproj` flag) and vision / tools / thinking wired up:
|
| 173 |
+
|
| 174 |
+
```bash
|
| 175 |
+
ollama run orcarouter/Qwen3.8-27B-Uncensored # q4_K_M by default
|
| 176 |
+
ollama run orcarouter/Qwen3.8-27B-Uncensored:iq4_xs # any of the 16 tags
|
| 177 |
+
```
|
| 178 |
+
|
| 179 |
+
Sixteen tags from `q2_K` to `q8_0`, each verified on the actual quantized artifact before release β
|
| 180 |
+
[ollama.com/orcarouter](https://ollama.com/orcarouter).
|
| 181 |
+
|
| 182 |
+
## Evaluation
|
| 183 |
+
|
| 184 |
+
Measured on this exact abliterated build (served with vLLM) vs the official `Qwen/Qwen3.8-27B-FP8`,
|
| 185 |
+
using the same scripts and settings. Refusal is judged by a rule-based opening-phrase classifier β
|
| 186 |
+
indicative, not an LLM-judge / publication-grade number. GGUF quants are deterministic derivations and
|
| 187 |
+
inherit these behaviours; lower bits trade some quality (see the file table).
|
| 188 |
+
|
| 189 |
+
### Safety β harmful-prompt refusal, **thinking OFF** (lower = more uncensored)
|
| 190 |
+
|
| 191 |
+
| Benchmark | n | Base FP8 | **This model** |
|
| 192 |
+
|---|---:|---:|---:|
|
| 193 |
+
| AdvBench | 100 | 99.0% | **0.0%** |
|
| 194 |
+
| JailbreakBench (harmful) | 100 | 94.0% | **0.0%** |
|
| 195 |
+
| StrongREJECT | 150 | 97.3% | **2.0%** |
|
| 196 |
+
| HarmBench (standard) | 150 | 98.7% | **2.7%** |
|
| 197 |
+
| MaliciousInstruct | 100 | 99.0% | **0.0%** |
|
| 198 |
+
| SimpleSafetyTests | 50 | 64.0% | **6.0%** |
|
| 199 |
+
| ForbiddenQuestions | 150 | 73.3% | **4.7%** |
|
| 200 |
+
| Custom probes (zh/en) | 11 | 63.6% | **0.0%** |
|
| 201 |
+
|
| 202 |
+
### Safety β harmful-prompt refusal, **thinking ON** (`enable_thinking=true`)
|
| 203 |
+
|
| 204 |
+
| Benchmark | n | Base FP8 | **This model** |
|
| 205 |
+
|---|---:|---:|---:|
|
| 206 |
+
| AdvBench | 60 | 66.7% | **1.7%** |
|
| 207 |
+
| JailbreakBench (harmful) | 60 | 43.3% | **0.0%** |
|
| 208 |
+
| StrongREJECT | 60 | 35.0% | **0.0%** |
|
| 209 |
+
| HarmBench (standard) | 60 | 46.7% | **0.0%** |
|
| 210 |
+
| MaliciousInstruct | 60 | 83.3% | **0.0%** |
|
| 211 |
+
| SimpleSafetyTests | 50 | 44.0% | **0.0%** |
|
| 212 |
+
| ForbiddenQuestions | 60 | 48.3% | **0.0%** |
|
| 213 |
+
| Custom probes (zh/en) | 11 | 45.5% | **0.0%** |
|
| 214 |
+
|
| 215 |
+
### Over-refusal β benign prompts wrongly refused (lower = better)
|
| 216 |
+
|
| 217 |
+
| Benchmark | n | Base FP8 (no-think / think) | **This model** (no-think / think) |
|
| 218 |
+
|---|---:|---:|---:|
|
| 219 |
+
| XSTest-safe | 250 | 5.6% / 0.0% | **0.4% / 0.0%** |
|
| 220 |
+
|
| 221 |
+
### Capability retention β vs the official base FP8 (same scripts)
|
| 222 |
+
|
| 223 |
+
| Benchmark | n | Base FP8 | **This model** | Ξ |
|
| 224 |
+
|---|---:|---:|---:|---:|
|
| 225 |
+
| MMLU (all, 0-shot) | 300 | 84.3% | **84.7%** | **+0.4** |
|
| 226 |
+
| MMLU-Pro (CoT) | 250 | 77.6% | **76.8%** | β0.8 |
|
| 227 |
+
| GSM8K (CoT) | 150 | 90.0% | **88.7%** | β1.3 |
|
| 228 |
+
| CMMLU (0-shot, Chinese) | 500 | 81.4% | **80.8%** | β0.6 |
|
| 229 |
+
| WikiText-2 perplexity | β | β | **6.96** | fluency sanity check |
|
| 230 |
+
|
| 231 |
+
Harmful-prompt refusal collapses from **64β99%** (base) to **0β6%**; benign over-refusal drops
|
| 232 |
+
(5.6%β0.4%); capability stays within **Β±1.3 pts** of the base. Reasoning (`enable_thinking`),
|
| 233 |
+
multi-turn tool calling (`qwen3_coder`), and vision (image + OCR via `mmproj`) all verified working on
|
| 234 |
+
the GGUF build. Note: the above are full-precision/FP8 numbers; expect small additional degradation at
|
| 235 |
+
lower quants (most visible at Q2_K / Q3).
|
| 236 |
+
|
| 237 |
+
## Hardware
|
| 238 |
+
|
| 239 |
+
- Runs on CPU, CUDA, Metal, or ROCm via llama.cpp. VRAM/RAM β the file size + KV cache + (for vision)
|
| 240 |
+
the ~0.9 GB mmproj. E.g. `Q4_K_M` fits comfortably on a 24 GB GPU with room for context.
|
| 241 |
+
|
| 242 |
+
## License
|
| 243 |
+
|
| 244 |
+
**Apache 2.0**, inherited from [`Qwen/Qwen3.8-27B`](https://huggingface.co/Qwen/Qwen3.8-27B).
|
| 245 |
+
Abliteration and quantization do not change the underlying license obligations.
|
mmproj-Qwen3.8-27B-Uncensored-f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:add205b7bfdb3f71f6da36b0a82aa20928dd829a920878c602628cdfbebc5288
|
| 3 |
+
size 931145984
|