Instructions to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("YaraPaola/Qwen3-8B-Jailbroken-GGUF", dtype="auto") - llama-cpp-python
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="YaraPaola/Qwen3-8B-Jailbroken-GGUF", filename="Qwen3-8B-Jailbroken.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 YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
Use Docker
docker model run hf.co/YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with Ollama:
ollama run hf.co/YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
- Unsloth Studio
How to use YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for YaraPaola/Qwen3-8B-Jailbroken-GGUF to start chatting
- Pi
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YaraPaola/Qwen3-8B-Jailbroken-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": "YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-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 YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf YaraPaola/Qwen3-8B-Jailbroken-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 "YaraPaola/Qwen3-8B-Jailbroken-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"
- Docker Model Runner
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with Docker Model Runner:
docker model run hf.co/YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
- Lemonade
How to use YaraPaola/Qwen3-8B-Jailbroken-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull YaraPaola/Qwen3-8B-Jailbroken-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3-8B-Jailbroken-GGUF-Q4_K_M
List all available models
lemonade list
Commit ·
fa7f0a1
0
Parent(s):
Duplicate from mradermacher/Qwen3-8B-Jailbroken-GGUF
Browse filesCo-authored-by: team mradermacher <mradermacher@users.noreply.huggingface.co>
- .gitattributes +47 -0
- Qwen3-8B-Jailbroken.IQ4_XS.gguf +3 -0
- Qwen3-8B-Jailbroken.Q2_K.gguf +3 -0
- Qwen3-8B-Jailbroken.Q3_K_L.gguf +3 -0
- Qwen3-8B-Jailbroken.Q3_K_M.gguf +3 -0
- Qwen3-8B-Jailbroken.Q3_K_S.gguf +3 -0
- Qwen3-8B-Jailbroken.Q4_K_M.gguf +3 -0
- Qwen3-8B-Jailbroken.Q4_K_S.gguf +3 -0
- Qwen3-8B-Jailbroken.Q5_K_M.gguf +3 -0
- Qwen3-8B-Jailbroken.Q5_K_S.gguf +3 -0
- Qwen3-8B-Jailbroken.Q6_K.gguf +3 -0
- Qwen3-8B-Jailbroken.Q8_0.gguf +3 -0
- Qwen3-8B-Jailbroken.f16.gguf +3 -0
- README.md +75 -0
.gitattributes
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
Qwen3-8B-Jailbroken.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3-8B-Jailbroken.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3-8B-Jailbroken.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3-8B-Jailbroken.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3-8B-Jailbroken.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3-8B-Jailbroken.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3-8B-Jailbroken.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3-8B-Jailbroken.Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3-8B-Jailbroken.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3-8B-Jailbroken.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3-8B-Jailbroken.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3-8B-Jailbroken.IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
Qwen3-8B-Jailbroken.IQ4_XS.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:30db21802785b74d7ecff8e41f2fb3c118fbbdf2d59207e7c08a2d46730873cb
|
| 3 |
+
size 4593297056
|
Qwen3-8B-Jailbroken.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6fc92d9046de586f8a98e67a6d869aa68dab76aa3b1bdf370e5fdfda5fb1fa90
|
| 3 |
+
size 3281733280
|
Qwen3-8B-Jailbroken.Q3_K_L.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2e6b53c1fe8a63c2aaf6fe1ba64c79088400acd09e324ce4e5df016235e46651
|
| 3 |
+
size 4431394464
|
Qwen3-8B-Jailbroken.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0eee2f8dbeafec3996beb04be91a59d713fb434e5d7e6020bb9f222c55ecc118
|
| 3 |
+
size 4124161696
|
Qwen3-8B-Jailbroken.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bb3d023658997b7e8f79add7f3976fdd03621a20f0501e90a009dc921dd82a74
|
| 3 |
+
size 3769611936
|
Qwen3-8B-Jailbroken.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14ded84a1791a95285829abcc76ed9ca4fa61c469e0e94b53a4224ce46e34b41
|
| 3 |
+
size 5027784352
|
Qwen3-8B-Jailbroken.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4e04b69ec9bb10ef9917017ab2849769d13dabb50e2fc3e4b73cecce0de1ff66
|
| 3 |
+
size 4802012832
|
Qwen3-8B-Jailbroken.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7977773a2545620ef9fda2373c6882197178b7cec8dc00347d53d40934a68c8c
|
| 3 |
+
size 5851113120
|
Qwen3-8B-Jailbroken.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a13b7d442f69f12337df6fa0a82d52d5f401a74ab8d5694d8505fed9833b74a
|
| 3 |
+
size 5720762016
|
Qwen3-8B-Jailbroken.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b53ea5251cb66ec29ec3cf88e4b95c4652beb93b75afa79ad03ce02938190428
|
| 3 |
+
size 6725899936
|
Qwen3-8B-Jailbroken.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c321954952f53472ad2f6a3c090814dc46fcef1f34b274296445a6cfd199c11a
|
| 3 |
+
size 8709519008
|
Qwen3-8B-Jailbroken.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90e6951f0f8099ae0d13bcddc6029cf502cefe04a1c3e561e0953f1cb63ce771
|
| 3 |
+
size 16388044448
|
README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: cooperleong00/Qwen3-8B-Jailbroken
|
| 3 |
+
language:
|
| 4 |
+
- zho
|
| 5 |
+
- eng
|
| 6 |
+
- fra
|
| 7 |
+
- spa
|
| 8 |
+
- por
|
| 9 |
+
- deu
|
| 10 |
+
- ita
|
| 11 |
+
- rus
|
| 12 |
+
- jpn
|
| 13 |
+
- kor
|
| 14 |
+
- vie
|
| 15 |
+
- tha
|
| 16 |
+
- ara
|
| 17 |
+
library_name: transformers
|
| 18 |
+
quantized_by: mradermacher
|
| 19 |
+
---
|
| 20 |
+
## About
|
| 21 |
+
|
| 22 |
+
<!-- ### quantize_version: 2 -->
|
| 23 |
+
<!-- ### output_tensor_quantised: 1 -->
|
| 24 |
+
<!-- ### convert_type: hf -->
|
| 25 |
+
<!-- ### vocab_type: -->
|
| 26 |
+
<!-- ### tags: -->
|
| 27 |
+
static quants of https://huggingface.co/cooperleong00/Qwen3-8B-Jailbroken
|
| 28 |
+
|
| 29 |
+
<!-- provided-files -->
|
| 30 |
+
weighted/imatrix quants are available at https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-i1-GGUF
|
| 31 |
+
## Usage
|
| 32 |
+
|
| 33 |
+
If you are unsure how to use GGUF files, refer to one of [TheBloke's
|
| 34 |
+
READMEs](https://huggingface.co/TheBloke/KafkaLM-70B-German-V0.1-GGUF) for
|
| 35 |
+
more details, including on how to concatenate multi-part files.
|
| 36 |
+
|
| 37 |
+
## Provided Quants
|
| 38 |
+
|
| 39 |
+
(sorted by size, not necessarily quality. IQ-quants are often preferable over similar sized non-IQ quants)
|
| 40 |
+
|
| 41 |
+
| Link | Type | Size/GB | Notes |
|
| 42 |
+
|:-----|:-----|--------:|:------|
|
| 43 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q2_K.gguf) | Q2_K | 3.4 | |
|
| 44 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q3_K_S.gguf) | Q3_K_S | 3.9 | |
|
| 45 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q3_K_M.gguf) | Q3_K_M | 4.2 | lower quality |
|
| 46 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q3_K_L.gguf) | Q3_K_L | 4.5 | |
|
| 47 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.IQ4_XS.gguf) | IQ4_XS | 4.7 | |
|
| 48 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q4_K_S.gguf) | Q4_K_S | 4.9 | fast, recommended |
|
| 49 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q4_K_M.gguf) | Q4_K_M | 5.1 | fast, recommended |
|
| 50 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q5_K_S.gguf) | Q5_K_S | 5.8 | |
|
| 51 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q5_K_M.gguf) | Q5_K_M | 6.0 | |
|
| 52 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q6_K.gguf) | Q6_K | 6.8 | very good quality |
|
| 53 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.Q8_0.gguf) | Q8_0 | 8.8 | fast, best quality |
|
| 54 |
+
| [GGUF](https://huggingface.co/mradermacher/Qwen3-8B-Jailbroken-GGUF/resolve/main/Qwen3-8B-Jailbroken.f16.gguf) | f16 | 16.5 | 16 bpw, overkill |
|
| 55 |
+
|
| 56 |
+
Here is a handy graph by ikawrakow comparing some lower-quality quant
|
| 57 |
+
types (lower is better):
|
| 58 |
+
|
| 59 |
+

|
| 60 |
+
|
| 61 |
+
And here are Artefact2's thoughts on the matter:
|
| 62 |
+
https://gist.github.com/Artefact2/b5f810600771265fc1e39442288e8ec9
|
| 63 |
+
|
| 64 |
+
## FAQ / Model Request
|
| 65 |
+
|
| 66 |
+
See https://huggingface.co/mradermacher/model_requests for some answers to
|
| 67 |
+
questions you might have and/or if you want some other model quantized.
|
| 68 |
+
|
| 69 |
+
## Thanks
|
| 70 |
+
|
| 71 |
+
I thank my company, [nethype GmbH](https://www.nethype.de/), for letting
|
| 72 |
+
me use its servers and providing upgrades to my workstation to enable
|
| 73 |
+
this work in my free time.
|
| 74 |
+
|
| 75 |
+
<!-- end -->
|