Instructions to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
Use Docker
docker model run hf.co/cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cole17e/Qwen3.8-27B-Heretic-Abliterated-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": "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
- SGLang
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-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 "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-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": "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-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 "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-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": "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with Ollama:
ollama run hf.co/cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
- Unsloth Desktop
- Pi
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-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": "cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with Docker Model Runner:
docker model run hf.co/cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
- Lemonade
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use cole17e/Qwen3.8-27B-Heretic-Abliterated-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 cole17e/Qwen3.8-27B-Heretic-Abliterated-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 "cole17e/Qwen3.8-27B-Heretic-Abliterated-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"
Duplicate from 0bserverx/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF
Browse files- .gitattributes +164 -0
- Qwen3.8-27B-Heretic-Q4_K_M.gguf +3 -0
- README.md +494 -0
- RVN-BF16-mtp.gguf +3 -0
- RVN-BF16.gguf +3 -0
- RVN-F16-mtp.gguf +3 -0
- RVN-F16.gguf +3 -0
- RVN-IQ1_M-mtp.gguf +3 -0
- RVN-IQ1_M-multilingual-mtp.gguf +3 -0
- RVN-IQ1_M-multilingual.gguf +3 -0
- RVN-IQ1_M.gguf +3 -0
- RVN-IQ1_S-mtp.gguf +3 -0
- RVN-IQ1_S-multilingual-mtp.gguf +3 -0
- RVN-IQ1_S-multilingual.gguf +3 -0
- RVN-IQ1_S.gguf +3 -0
- RVN-IQ2_M-mtp.gguf +3 -0
- RVN-IQ2_M-multilingual-mtp.gguf +3 -0
- RVN-IQ2_M-multilingual.gguf +3 -0
- RVN-IQ2_M.gguf +3 -0
- RVN-IQ2_S-mtp.gguf +3 -0
- RVN-IQ2_S-multilingual-mtp.gguf +3 -0
- RVN-IQ2_S-multilingual.gguf +3 -0
- RVN-IQ2_S.gguf +3 -0
- RVN-IQ2_XS-mtp.gguf +3 -0
- RVN-IQ2_XS-multilingual-mtp.gguf +3 -0
- RVN-IQ2_XS-multilingual.gguf +3 -0
- RVN-IQ2_XS.gguf +3 -0
- RVN-IQ2_XXS-mtp.gguf +3 -0
- RVN-IQ2_XXS-multilingual-mtp.gguf +3 -0
- RVN-IQ2_XXS-multilingual.gguf +3 -0
- RVN-IQ2_XXS.gguf +3 -0
- RVN-IQ3_M-mtp.gguf +3 -0
- RVN-IQ3_M-multilingual-mtp.gguf +3 -0
- RVN-IQ3_M-multilingual.gguf +3 -0
- RVN-IQ3_M.gguf +3 -0
- RVN-IQ3_S-mtp.gguf +3 -0
- RVN-IQ3_S-multilingual-mtp.gguf +3 -0
- RVN-IQ3_S-multilingual.gguf +3 -0
- RVN-IQ3_S.gguf +3 -0
- RVN-IQ3_XS-mtp.gguf +3 -0
- RVN-IQ3_XS-multilingual-mtp.gguf +3 -0
- RVN-IQ3_XS-multilingual.gguf +3 -0
- RVN-IQ3_XS.gguf +3 -0
- RVN-IQ3_XXS-mtp.gguf +3 -0
- RVN-IQ3_XXS-multilingual-mtp.gguf +3 -0
- RVN-IQ3_XXS-multilingual.gguf +3 -0
- RVN-IQ3_XXS.gguf +3 -0
- RVN-IQ4_NL-mtp.gguf +3 -0
- RVN-IQ4_NL-multilingual-mtp.gguf +3 -0
- RVN-IQ4_NL-multilingual.gguf +3 -0
|
@@ -0,0 +1,164 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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.8-27B-Heretic-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Qwen3.8-27B-Heretic-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.8-27B-Heretic-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.8-27B-Heretic-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3.8-27B-Heretic-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3.8-27B-Heretic-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3.8-27B-Heretic-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3.8-27B-Heretic-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3.8-27B-Heretic-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3.8-27B-Heretic-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3.8-27B-Heretic-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3.8-27B-Heretic-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3.8-27B-Heretic-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
RVN-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
RVN-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
RVN-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
RVN-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
RVN-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
RVN-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
RVN-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
RVN-F16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
RVN-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
RVN-BF16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
RVN-IQ4_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
RVN-IQ3_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
RVN-IQ2_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
RVN-Q2_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
RVN-Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
RVN-IQ1_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
RVN-IQ1_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
RVN-IQ2_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
RVN-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
.speedtest filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
.speedtest2 filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
.speedbig filter=lfs diff=lfs merge=lfs -text
|
| 71 |
+
.par2 filter=lfs diff=lfs merge=lfs -text
|
| 72 |
+
.par1 filter=lfs diff=lfs merge=lfs -text
|
| 73 |
+
.par3 filter=lfs diff=lfs merge=lfs -text
|
| 74 |
+
.speedsl filter=lfs diff=lfs merge=lfs -text
|
| 75 |
+
.par8_7 filter=lfs diff=lfs merge=lfs -text
|
| 76 |
+
.par8_5 filter=lfs diff=lfs merge=lfs -text
|
| 77 |
+
.par8_0 filter=lfs diff=lfs merge=lfs -text
|
| 78 |
+
.par8_1 filter=lfs diff=lfs merge=lfs -text
|
| 79 |
+
.par8_6 filter=lfs diff=lfs merge=lfs -text
|
| 80 |
+
RVN-IQ2_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 81 |
+
RVN-IQ3_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 82 |
+
RVN-IQ3_XS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 83 |
+
RVN-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 84 |
+
RVN-Q3_K_L.gguf filter=lfs diff=lfs merge=lfs -text
|
| 85 |
+
RVN-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 86 |
+
RVN-IQ1_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 87 |
+
RVN-BF16-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 88 |
+
RVN-IQ2_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 89 |
+
RVN-IQ1_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 90 |
+
RVN-IQ2_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 91 |
+
RVN-Q3_K_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 92 |
+
RVN-IQ2_XS-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 93 |
+
RVN-IQ2_XXS-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 94 |
+
RVN-IQ3_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 95 |
+
RVN-IQ3_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 96 |
+
RVN-IQ3_XS-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 97 |
+
RVN-IQ3_XXS-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 98 |
+
mtp-RVN.gguf filter=lfs diff=lfs merge=lfs -text
|
| 99 |
+
RVN-Q2_K_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 100 |
+
RVN-IQ4_XS-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 101 |
+
RVN-Q3_K_L-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 102 |
+
RVN-Q3_K_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 103 |
+
RVN-Q2_K-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 104 |
+
RVN-Q4_K_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 105 |
+
RVN-Q4_K_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 106 |
+
RVN-IQ4_NL-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 107 |
+
RVN-Q5_K_M-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 108 |
+
RVN-Q5_K_S-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 109 |
+
RVN-F16-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 110 |
+
RVN-Q6_K-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 111 |
+
RVN-Q8_0-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 112 |
+
mmproj-Qwen3.8-27B-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 113 |
+
RVN-Q3_K_M-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
| 114 |
+
RVN-Q4_K_M-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
| 115 |
+
RVN-Q5_K_M-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
| 116 |
+
RVN-Q4_K_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 117 |
+
RVN-Q4_K_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 118 |
+
RVN-IQ4_XS-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 119 |
+
RVN-IQ4_XS-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
+
RVN-Q8_0-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
+
RVN-Q8_0-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 122 |
+
RVN-Q5_K_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
RVN-Q5_K_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
RVN-Q4_K_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
RVN-Q4_K_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 126 |
+
RVN-Q3_K_L-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
+
RVN-Q3_K_L-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
+
RVN-IQ4_NL-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
RVN-IQ4_NL-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
RVN-Q3_K_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
RVN-IQ3_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
RVN-IQ3_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
RVN-Q3_K_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
RVN-Q3_K_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
RVN-Q3_K_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
RVN-IQ3_XXS-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
RVN-Q6_K-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
RVN-Q6_K-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
RVN-IQ3_XXS-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 140 |
+
RVN-Q5_K_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
RVN-Q5_K_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
RVN-Q2_K_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
RVN-Q2_K_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
RVN-IQ3_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
RVN-IQ3_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
RVN-IQ2_XS-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
RVN-IQ2_XS-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
RVN-IQ2_XXS-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
RVN-IQ3_XS-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
RVN-IQ2_XXS-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
RVN-IQ3_XS-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
+
RVN-Q5_K_M-multilingual-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
+
RVN-Q2_K-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
RVN-Q2_K-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
RVN-Q3_K_M-multilingual-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
| 156 |
+
RVN-IQ2_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 157 |
+
RVN-IQ2_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 158 |
+
RVN-IQ2_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 159 |
+
RVN-IQ2_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 160 |
+
RVN-IQ1_M-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 161 |
+
RVN-IQ1_M-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 162 |
+
RVN-IQ1_S-multilingual.gguf filter=lfs diff=lfs merge=lfs -text
|
| 163 |
+
RVN-IQ1_S-multilingual-mtp.gguf filter=lfs diff=lfs merge=lfs -text
|
| 164 |
+
RVN-Q4_K_M-multilingual-vision.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ae89d6720ba0a27f643e6fbb0d1b557870d17aeff23156e5981e863ec16985c
|
| 3 |
+
size 16547400032
|
|
@@ -0,0 +1,494 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
base_model:
|
| 4 |
+
- Qwen/Qwen3.8-27B
|
| 5 |
+
library_name: transformers
|
| 6 |
+
tags:
|
| 7 |
+
- qwen3.8
|
| 8 |
+
- qwen3.5
|
| 9 |
+
- heretic
|
| 10 |
+
- abliterated
|
| 11 |
+
- uncensored
|
| 12 |
+
- roleplay
|
| 13 |
+
- gguf
|
| 14 |
+
- imatrix
|
| 15 |
+
pipeline_tag: text-generation
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Qwen3.8-27B RVN Heretic Abliterated Uncensored (GGUF)
|
| 19 |
+
|
| 20 |
+
**RVN** is a double-refined abliterated variant of **Qwen3.8-27B**, built on top of
|
| 21 |
+
[`trohrbaugh/Qwen3.8-27B-heretic-ara`](https://huggingface.co/trohrbaugh/Qwen3.8-27B-heretic-ara)
|
| 22 |
+
(an ARA abliteration by **Tim Rohrbaugh**) and further refined with **two additional
|
| 23 |
+
full-weight ARA passes** targeting residual refusals. It retains very low behavioral
|
| 24 |
+
damage (KL ≈ 0.0085) while reducing harmful-prompt refusals from 3/100 (source) to
|
| 25 |
+
**0–1/100** in independent measurements.
|
| 26 |
+
|
| 27 |
+
> **Note on this repository's history.** This repo previously hosted the original
|
| 28 |
+
> `Qwen3.8-27B-Heretic-Q4_K_M.gguf` (single-quant release from the earlier
|
| 29 |
+
> `trohrbaugh/Qwen3.8-27B-heretic` source). That file is kept as **legacy** for
|
| 30 |
+
> download-count continuity and backward compatibility — it is the *older* abliteration
|
| 31 |
+
> variant and is superseded by the RVN files below. Prefer the RVN quants for new
|
| 32 |
+
> deployments.
|
| 33 |
+
|
| 34 |
+
> **Not for all audiences.** This model has reduced safety guardrails by design. It is
|
| 35 |
+
> intended for adult audiences (18+) doing research, creative writing, roleplay, and
|
| 36 |
+
> uncensored generation. Certain guardrails are intentionally left in place; use
|
| 37 |
+
> responsibly and in accordance with your local laws.
|
| 38 |
+
|
| 39 |
+
> **Compatibility status (2026-08-19):** the recommended `*-multilingual*.gguf` family and all 53 legacy RVN GGUF paths embed the official Qwen3.8 chat template. Every multilingual artifact passed a real per-file OpenAI-compatible tool-call/thinking-control gate; the legacy paths were repaired in place so users do not need an external template workaround.
|
| 40 |
+
|
| 41 |
+
---
|
| 42 |
+
|
| 43 |
+
## What is ARA?
|
| 44 |
+
|
| 45 |
+
**ARA (Arbitrary-Rank Ablation)** is the abliteration technique implemented in
|
| 46 |
+
[p-e-w/heretic](https://github.com/p-e-w/heretic). Traditional directional abliteration
|
| 47 |
+
finds a single "refusal direction" in activation space and subtracts it — a one-shot,
|
| 48 |
+
low-rank surgery that is simple but can leave residual refusals or damage unrelated
|
| 49 |
+
behavior.
|
| 50 |
+
|
| 51 |
+
ARA instead treats abliteration as a **matrix optimization problem**. For every target
|
| 52 |
+
module (attention out-projection and MLP down-projection), it collects activations on
|
| 53 |
+
"good" prompts (harmless requests) and "bad" prompts (harmful requests), then uses an
|
| 54 |
+
LBFGS optimizer to rewrite the module's weight matrix so that:
|
| 55 |
+
|
| 56 |
+
- **Preserve:** outputs on good prompts change as little as possible (KL is kept low)
|
| 57 |
+
- **Steer:** outputs on bad prompts are pulled toward the good-prompt output manifold
|
| 58 |
+
(via k-nearest-neighbor distances), so harmful requests stop triggering the refusal
|
| 59 |
+
circuitry
|
| 60 |
+
- **Overcorrect:** outputs on bad prompts are additionally pushed *away* from the
|
| 61 |
+
original bad-prompt outputs, which helps overcome complex, multi-stage refusal
|
| 62 |
+
mechanisms
|
| 63 |
+
|
| 64 |
+
Because the weight matrix is optimized directly (rather than subtracting a single
|
| 65 |
+
direction), ARA is "arbitrary rank" — it can carve out a much richer refusal-removal
|
| 66 |
+
subspace while keeping behavioral damage minimal.
|
| 67 |
+
|
| 68 |
+
## Why "Heretic" and "Abliterated"?
|
| 69 |
+
|
| 70 |
+
These two words describe two layers of the same process:
|
| 71 |
+
|
| 72 |
+
- **Heretic** is the *tool*: the open-source implementation of ARA (and related
|
| 73 |
+
abliteration methods) used to modify the model. Models produced with it are commonly
|
| 74 |
+
labeled "heretic" in the community.
|
| 75 |
+
- **Abliterated** is the *result*: the model's refusal behavior has been surgically
|
| 76 |
+
removed. An abliterated model still knows everything the base model knows, but it no
|
| 77 |
+
longer refuses to answer the categories that were steered away during the process.
|
| 78 |
+
|
| 79 |
+
So "Heretic Abliterated" means: *abliterated using the heretic toolset.* RVN goes one
|
| 80 |
+
step further — it applies the ARA procedure **three times total**: once by the original
|
| 81 |
+
author (`trohrbaugh`) to get from base Qwen3.8-27B to `-ara`, and twice more by us to
|
| 82 |
+
get from `-ara` to RVN, squeezing out the last residual refusals.
|
| 83 |
+
|
| 84 |
+
## Special Thanks
|
| 85 |
+
|
| 86 |
+
This work would not exist without **Tim Rohrbaugh** (`trohrbaugh`), whose
|
| 87 |
+
[`heretic-ara`](https://huggingface.co/trohrbaugh/Qwen3.8-27B-heretic-ara) ARA
|
| 88 |
+
abliteration of Qwen3.8-27B (refusals 3/100, KL 0.0535) provided the foundation we
|
| 89 |
+
refined into RVN. His upstream contributions to the heretic codebase — including the
|
| 90 |
+
row-norm preservation feature and Qwen3.5 MoE/DeltaNet hybrid handling — are directly
|
| 91 |
+
responsible for making DeltaNet-layer abliteration work at all. Thank you, Tim.
|
| 92 |
+
|
| 93 |
+
## Model Overview
|
| 94 |
+
|
| 95 |
+
| Property | Value |
|
| 96 |
+
|---|---|
|
| 97 |
+
| Base model | [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B) |
|
| 98 |
+
| Abliteration source | [`trohrbaugh/Qwen3.8-27B-heretic-ara`](https://huggingface.co/trohrbaugh/Qwen3.8-27B-heretic-ara) (ARA, KL 0.0535, refusals 3/100) |
|
| 99 |
+
| **RVN refinement** | **2-pass ARA on top of source → KL 0.0085, refusals 0–1/100** |
|
| 100 |
+
| Architecture | `qwen3_5_text` (Qwen3.8 family), Gated DeltaNet hybrid |
|
| 101 |
+
| Parameters | 27B total |
|
| 102 |
+
| Hidden size | 5120 |
|
| 103 |
+
| Layers | 64 (16 standard attention + 48 Gated DeltaNet linear attention) |
|
| 104 |
+
| Attention heads | 24 · KV heads 4 (GQA) · head_dim 256 |
|
| 105 |
+
| Vocab | 248,320 |
|
| 106 |
+
| Context length | 262,144 (262K) |
|
| 107 |
+
| License | Apache-2.0 (retained from Qwen3.8-27B) |
|
| 108 |
+
| Format | GGUF (llama.cpp). Base files: MTP/NextN excluded. `*-mtp.gguf` files ship the official Qwen3.8 MTP draft head embedded → see [MTP Speculative Decoding](#mtp-speculative-decoding) |
|
| 109 |
+
|
| 110 |
+
## Why RVN?
|
| 111 |
+
|
| 112 |
+
`trohrbaugh/Qwen3.8-27B-heretic-ara` is already a strong ARA abliteration, but three
|
| 113 |
+
harmful prompts still triggered refusals in our independent evaluation (racism website,
|
| 114 |
+
malware, government database hacking). RVN applies **two additional full-weight ARA
|
| 115 |
+
passes** using the same tight parameter set (start 26, end 56, preserve 0.9432,
|
| 116 |
+
steer 0.0009, overcorrect 0.5038, neighbor 10), which:
|
| 117 |
+
|
| 118 |
+
- Reduced refusals from **3/100 → 0–1/100** (the only remaining refusal is a
|
| 119 |
+
chemical-weapon WMD prompt — one of the strongest safety-trained categories, and
|
| 120 |
+
intentionally one of the guardrails we left in place)
|
| 121 |
+
- Reduced KL damage from 0.0535 (source) to **0.0085** vs base — a ~6× improvement
|
| 122 |
+
in behavioral preservation
|
| 123 |
+
- Verified independently on two rented GPU machines with prefix-based (real-answer)
|
| 124 |
+
refusal measurement
|
| 125 |
+
|
| 126 |
+
### Refusal evaluation (100 harmful-behaviors prompts, prefix-forced real answers)
|
| 127 |
+
|
| 128 |
+
| Model | Refusals | KL vs base |
|
| 129 |
+
|---|---|---|
|
| 130 |
+
| Qwen3.8-27B (base) | ~99/100 | — |
|
| 131 |
+
| trohrbaugh -ara (source) | 3/100 | 0.0535 |
|
| 132 |
+
| **RVN (this repo)** | **0–1/100** | **0.0085** |
|
| 133 |
+
|
| 134 |
+
<!-- RVN_FILE_SELECTION_GUIDE_START -->
|
| 135 |
+
## Which file should I download?
|
| 136 |
+
|
| 137 |
+
**Download one main-model GGUF, not the whole repository.** Start with a plain `-multilingual.gguf` file unless you specifically need MTP or a vision-protected build. Model size is not the whole memory requirement: leave room for the KV cache, compute buffers, the operating system, and—when used—the vision projector.
|
| 138 |
+
|
| 139 |
+
### Quick picks
|
| 140 |
+
|
| 141 |
+
The sizes below are the live model-weight sizes at the verified repository head. They do **not** include runtime buffers or KV cache.
|
| 142 |
+
|
| 143 |
+
| Hardware / goal | Recommended main model | Model weights | Practical consequence |
|
| 144 |
+
|---|---|---:|---|
|
| 145 |
+
| Best default on a 24 GB GPU | `RVN-Q4_K_M-multilingual.gguf` | 15.41 GiB | Good quality/memory balance with useful room for runtime buffers and context. |
|
| 146 |
+
| More quality on a 24 GB GPU | `RVN-Q5_K_M-multilingual.gguf` | 17.91 GiB | Better fidelity, but less context headroom. Q6_K at 20.57 GiB is too tight to be the default on 24 GB. |
|
| 147 |
+
| Safe starting point on a 16 GB GPU | `RVN-Q3_K_S-multilingual.gguf` | 11.24 GiB | Leaves more runtime headroom. `Q3_K_M` at 12.39 GiB offers better quality but a tighter context budget. |
|
| 148 |
+
| Safe starting point on a 12 GB GPU | `RVN-IQ2_XXS-multilingual.gguf` or `RVN-IQ2_XS-multilingual.gguf` | 7.85 / 8.47 GiB | Low-memory deployment with a visible quality loss versus Q3/Q4. IQ2_M at 9.32 GiB is a tight fit, not the default. |
|
| 149 |
+
| Around 8 GB VRAM | `RVN-IQ1_S-multilingual.gguf` | 6.66 GiB | Experimental emergency-fit option. Full GPU offload may still fail after buffers/KV are added; use a short context or partial CPU offload. Prefer the non-MTP file. |
|
| 150 |
+
| Highest quantized fidelity on 32 GB+ | `RVN-Q8_0-multilingual.gguf` | 26.63 GiB | Near-reference quantized quality; context still consumes additional memory. |
|
| 151 |
+
| Reference/evaluation on 64 GB+ | `RVN-BF16.gguf` or `RVN-F16.gguf` | 50.11 GiB | Not intended for ordinary inference hardware. BF16 is the source-format-oriented choice when supported; F16 is the compatibility/reference path used by this repository's existing quantization and PPL workflow. |
|
| 152 |
+
| CPU or Apple unified memory | Choose the largest recommended file that still leaves at least 6–10 GiB free | varies | System RAM/unified memory is shared with the OS, KV cache, and runtime. For long context, leave more than this minimum. |
|
| 153 |
+
|
| 154 |
+
### The valid filename families
|
| 155 |
+
|
| 156 |
+
Suffixes cannot be combined arbitrarily. These are the families that actually exist:
|
| 157 |
+
|
| 158 |
+
```text
|
| 159 |
+
RVN-{QUANT}.gguf
|
| 160 |
+
RVN-{QUANT}-mtp.gguf
|
| 161 |
+
RVN-{Q5_K_M|Q4_K_M|Q3_K_M}-vision.gguf
|
| 162 |
+
|
| 163 |
+
RVN-{QUANT}-multilingual.gguf
|
| 164 |
+
RVN-{QUANT}-multilingual-mtp.gguf
|
| 165 |
+
RVN-{Q5_K_M|Q4_K_M|Q3_K_M}-multilingual-vision.gguf
|
| 166 |
+
|
| 167 |
+
RVN-F16.gguf / RVN-F16-mtp.gguf
|
| 168 |
+
RVN-BF16.gguf / RVN-BF16-mtp.gguf
|
| 169 |
+
|
| 170 |
+
mtp-RVN.gguf # standalone draft-head compatibility artifact; not a main model
|
| 171 |
+
```
|
| 172 |
+
|
| 173 |
+
- There is no combined `vision-mtp` file.
|
| 174 |
+
- There is no `F16-multilingual` or `BF16-multilingual` file.
|
| 175 |
+
- `mmproj-Qwen3.8-27B-Q8_0.gguf` is a separate vision projector, not another main model.
|
| 176 |
+
- `mtp-RVN.gguf` is a separate 1.69 GiB standalone MTP draft-head artifact retained for advanced/legacy workflows. It cannot answer prompts by itself and is not required by any embedded `*-mtp.gguf` twin. Most users should ignore it and download either one plain main model or its embedded-MTP twin.
|
| 177 |
+
|
| 178 |
+
### What the names mean
|
| 179 |
+
|
| 180 |
+
- **`-multilingual`** — the recommended Qwen-tuned calibration family for new downloads. Its importance matrix covers Turkish, Russian, 20+ other languages, code, reasoning, and tool-use structures instead of concentrating the low-bit precision budget on narrow English-only text. Calibration matters most at low bit-rates; it does not teach Qwen new languages.
|
| 181 |
+
- **`-mtp`** — the same main-model tensor payload plus Qwen3.8's official 15-tensor MTP/NextN draft head for speculative decoding. Budget about **451 MB / 0.42 GiB** of additional memory. Every current multilingual twin is exactly **451,320,768 bytes** larger; current legacy twins add either **451,320,736 or 451,320,768 bytes** because of a 32-byte historical metadata-layout difference. It is a speed feature, not a higher-quality quant.
|
| 182 |
+
- **`-vision`** — keeps token embeddings, output, and the first/last bridge blocks at higher precision. It is an optional bridge-preserving variant, not a requirement for images. Multilingual vision files passed the repository's API/template gates; their image-quality advantage has not been separately benchmarked, so no quality uplift is claimed here.
|
| 183 |
+
- **No `-multilingual` in the name** — the original RVN calibration family, retained under its established filenames for compatibility and download continuity. It includes plain, `-mtp`, and selected `-vision` files. These current files are usable and template-correct, but the multilingual family is recommended for new low-bit deployments.
|
| 184 |
+
|
| 185 |
+
### Quant label legend
|
| 186 |
+
|
| 187 |
+
- **`Q…_K…`** — llama.cpp K-quant family. Within the same tier, `_M` generally retains more precision and is larger than `_S`; `_L` is larger again where available.
|
| 188 |
+
- **`IQ…`** — importance-aware low-bit quant format. It is especially useful when memory is tight, but the filename alone is not proof of how a historical artifact was calibrated; this repository documents provenance separately.
|
| 189 |
+
- **`L → M → S → XS → XXS`** — within a comparable family, generally moves toward smaller size and lower fidelity.
|
| 190 |
+
- **`NL`** — nonlinear IQ4 variant.
|
| 191 |
+
- Do not rank unlike families from the suffix alone. Use the quick picks and exact live-size table below.
|
| 192 |
+
|
| 193 |
+
### Vision: what to download
|
| 194 |
+
|
| 195 |
+
For image input, download:
|
| 196 |
+
|
| 197 |
+
1. **One compatible RVN main-model GGUF**—a standard or `-vision` file; and
|
| 198 |
+
2. **`mmproj-Qwen3.8-27B-Q8_0.gguf` separately** (about 0.63 GB).
|
| 199 |
+
|
| 200 |
+
Any compatible RVN main model can use the projector. Choose a `-vision` build when the available Q5_K_M/Q4_K_M/Q3_K_M size fits and preserving extra precision in the vision-language bridge is important. Because there is no combined `vision-mtp` artifact, choose between the self-contained vision-protected build and an embedded-MTP build.
|
| 201 |
+
|
| 202 |
+
### MTP: when to choose it
|
| 203 |
+
|
| 204 |
+
- Start with the plain `-multilingual.gguf` file for maximum runtime compatibility.
|
| 205 |
+
- Choose the matching `-multilingual-mtp.gguf` twin only when your recent llama.cpp build supports embedded MTP, the extra 0.42 GiB still leaves enough runtime/context memory, and you enable the documented MTP flags.
|
| 206 |
+
- Measured speedup varies by quant and hardware. It is not guaranteed.
|
| 207 |
+
- **Do not use the MTP twin for `IQ1_M`: measured generation was about 60% slower.** `IQ1_S` gained only about 4%. Prefer the plain files for those extreme quants unless your own benchmark shows otherwise.
|
| 208 |
+
|
| 209 |
+
### Legacy-name and chat-template clarification
|
| 210 |
+
|
| 211 |
+
- All 53 current `RVN-*.gguf` paths and all 49 `*-multilingual*.gguf` artifacts embed the official Qwen3.8 chat template. No external chat-template launch flag is needed for these current files.
|
| 212 |
+
- `Qwen3.8-27B-Heretic-Q4_K_M.gguf` is a separate, older pre-RVN abliteration retained for historical download continuity. Its current live header also contains the official embedded template, but it is not the RVN model and was not part of the 53-file RVN runtime-repair campaign. New users should choose an RVN multilingual file instead.
|
| 213 |
+
- `chat_template.jinja` remains in the repository as a readable reference copy of the official template, not as a required workaround for current files.
|
| 214 |
+
<!-- RVN_FILE_SELECTION_GUIDE_END -->
|
| 215 |
+
|
| 216 |
+
## Files & Quantization Spectrum
|
| 217 |
+
|
| 218 |
+
<!-- RVN_MULTILINGUAL_V5_START -->
|
| 219 |
+
### Recommended: Qwen Multilingual v5 calibrated family
|
| 220 |
+
|
| 221 |
+
These additive files were rebuilt from the template-correct RVN F16 reference using a pinned Qwen-tuned multilingual/code calibration corpus. The legacy filenames remain available for download continuity; choose the `-multilingual` family for new deployments.
|
| 222 |
+
|
| 223 |
+
**Why the multilingual family matters:** Qwen already learned its languages during pretraining; calibration does not teach them again. The importance matrix controls which activation/weight regions are preserved most carefully during low-bit quantization. A narrow English-only calibration set can spend that precision budget on English encyclopedia patterns, while this Qwen-tuned corpus also represents Turkish, Russian, 20+ other languages, code, reasoning traces, and tool-use structures. That makes `-multilingual` the recommended default for new downloads, especially at 4-bit and below.
|
| 224 |
+
|
| 225 |
+
**Which file should I choose?** Use the plain `-multilingual.gguf` file for maximum runtime compatibility. Choose its `-multilingual-mtp.gguf` twin only with a recent llama.cpp build and the documented MTP flags when you want speculative-decoding speed. Choose a `-multilingual-vision.gguf` variant when image understanding with the official mmproj is a priority. Q8_0 is retained in the same family for a consistent, fully verified provenance path even though calibration effects are expected to be smaller at 8-bit precision.
|
| 226 |
+
|
| 227 |
+
**Q8_0 clarification:** full tensor-schema and tensor-payload hashing proved that the legacy and multilingual Q8_0 base files have byte-identical tensors; their MTP twins are likewise tensor-identical. The multilingual Q8_0 names are retained for family/provenance consistency, not as a claim of extra Q8 quality. Their GGUF metadata records the pinned multilingual imatrix provenance, while `-mtp` still denotes the separate 15-tensor speculative-decoding head. Comparison receipt SHA-256: `210e59a07412df8f46b94f41790c0fb36540a2a6a09fb24933e6c1c3cb1ee863`.
|
| 228 |
+
|
| 229 |
+
**Reproducibility and verification:**
|
| 230 |
+
|
| 231 |
+
- Calibration source: [`tristandruyen/9e207a95c7d75ddf37525d353e00659c`](https://gist.github.com/tristandruyen/9e207a95c7d75ddf37525d353e00659c) at revision `aba17fe897c00fae02a18d26068aa453dee09e50`.
|
| 232 |
+
- Corpus SHA-256: `2a0118c633250aad448cfc2d103e10a731af6974dab1738ca19261fce3587b80`; imatrix SHA-256: `5e73e1449451480fa48f463b781cfa2124daaf5c337a0c44f272e37b64fc1114`.
|
| 233 |
+
- Imatrix: 55 completed chunks, 496 entries, context 2048; llama.cpp commit `645ca2834bc16e7eab112a91aeb282ebb913f935`.
|
| 234 |
+
- Embedded official Qwen template SHA-256: `c3cf9e34abf4f9e36c2d72165aa9c132d3e2a725b6c2586aaa3a8af9d7a81041`.
|
| 235 |
+
- 49/49 artifacts passed live LFS SHA-256 and 64 MiB header verification after upload.
|
| 236 |
+
- Every artifact was loaded in llama.cpp and then served through `llama-server`; its OpenAI-compatible API returned HTTP 200, `finish_reason=tool_calls`, and `add({"a":19,"b":23})`. `enable_thinking:false` suppressed `<think>`, and a separate normal-chat control returned `TEMPLATE_OK`.
|
| 237 |
+
- MTP twins additionally load with 866 tensors, `qwen35.block_count=65`, and `qwen35.nextn_predict_layers=1`.
|
| 238 |
+
|
| 239 |
+
Pilot PPL deltas (`multilingual - reference`; lower is better):
|
| 240 |
+
|
| 241 |
+
| Pilot | Wiki vs F16 | Wiki vs legacy | Multilingual vs F16 | Multilingual vs legacy |
|
| 242 |
+
|---|---:|---:|---:|---:|
|
| 243 |
+
| Q4_K_M | -0.0002 | +0.0156 | +0.0038 | **-0.0074** |
|
| 244 |
+
| IQ4_XS | +0.0290 | +0.0060 | +0.0091 | **-0.0083** |
|
| 245 |
+
|
| 246 |
+
| Quant | Base | Base size | Embedded-MTP twin | MTP size | Per-file API gate |
|
| 247 |
+
|---|---|---:|---|---:|---|
|
| 248 |
+
| Q8_0 | [`RVN-Q8_0-multilingual.gguf`](./RVN-Q8_0-multilingual.gguf) | 28.60 GB / 26.63 GiB | [`RVN-Q8_0-multilingual-mtp.gguf`](./RVN-Q8_0-multilingual-mtp.gguf) | 29.05 GB / 27.05 GiB | PASS |
|
| 249 |
+
| Q6_K | [`RVN-Q6_K-multilingual.gguf`](./RVN-Q6_K-multilingual.gguf) | 22.08 GB / 20.57 GiB | [`RVN-Q6_K-multilingual-mtp.gguf`](./RVN-Q6_K-multilingual-mtp.gguf) | 22.53 GB / 20.99 GiB | PASS |
|
| 250 |
+
| Q5_K_M | [`RVN-Q5_K_M-multilingual.gguf`](./RVN-Q5_K_M-multilingual.gguf) | 19.23 GB / 17.91 GiB | [`RVN-Q5_K_M-multilingual-mtp.gguf`](./RVN-Q5_K_M-multilingual-mtp.gguf) | 19.68 GB / 18.33 GiB | PASS |
|
| 251 |
+
| Q5_K_S | [`RVN-Q5_K_S-multilingual.gguf`](./RVN-Q5_K_S-multilingual.gguf) | 18.68 GB / 17.40 GiB | [`RVN-Q5_K_S-multilingual-mtp.gguf`](./RVN-Q5_K_S-multilingual-mtp.gguf) | 19.13 GB / 17.82 GiB | PASS |
|
| 252 |
+
| Q4_K_M | [`RVN-Q4_K_M-multilingual.gguf`](./RVN-Q4_K_M-multilingual.gguf) | 16.55 GB / 15.41 GiB | [`RVN-Q4_K_M-multilingual-mtp.gguf`](./RVN-Q4_K_M-multilingual-mtp.gguf) | 17.00 GB / 15.83 GiB | PASS |
|
| 253 |
+
| IQ4_NL | [`RVN-IQ4_NL-multilingual.gguf`](./RVN-IQ4_NL-multilingual.gguf) | 15.80 GB / 14.72 GiB | [`RVN-IQ4_NL-multilingual-mtp.gguf`](./RVN-IQ4_NL-multilingual-mtp.gguf) | 16.25 GB / 15.14 GiB | PASS |
|
| 254 |
+
| Q4_K_S | [`RVN-Q4_K_S-multilingual.gguf`](./RVN-Q4_K_S-multilingual.gguf) | 15.59 GB / 14.52 GiB | [`RVN-Q4_K_S-multilingual-mtp.gguf`](./RVN-Q4_K_S-multilingual-mtp.gguf) | 16.04 GB / 14.94 GiB | PASS |
|
| 255 |
+
| IQ4_XS | [`RVN-IQ4_XS-multilingual.gguf`](./RVN-IQ4_XS-multilingual.gguf) | 15.08 GB / 14.05 GiB | [`RVN-IQ4_XS-multilingual-mtp.gguf`](./RVN-IQ4_XS-multilingual-mtp.gguf) | 15.53 GB / 14.47 GiB | PASS |
|
| 256 |
+
| Q3_K_L | [`RVN-Q3_K_L-multilingual.gguf`](./RVN-Q3_K_L-multilingual.gguf) | 14.34 GB / 13.36 GiB | [`RVN-Q3_K_L-multilingual-mtp.gguf`](./RVN-Q3_K_L-multilingual-mtp.gguf) | 14.80 GB / 13.78 GiB | PASS |
|
| 257 |
+
| Q3_K_M | [`RVN-Q3_K_M-multilingual.gguf`](./RVN-Q3_K_M-multilingual.gguf) | 13.30 GB / 12.39 GiB | [`RVN-Q3_K_M-multilingual-mtp.gguf`](./RVN-Q3_K_M-multilingual-mtp.gguf) | 13.75 GB / 12.81 GiB | PASS |
|
| 258 |
+
| IQ3_M | [`RVN-IQ3_M-multilingual.gguf`](./RVN-IQ3_M-multilingual.gguf) | 12.58 GB / 11.72 GiB | [`RVN-IQ3_M-multilingual-mtp.gguf`](./RVN-IQ3_M-multilingual-mtp.gguf) | 13.03 GB / 12.14 GiB | PASS |
|
| 259 |
+
| IQ3_S | [`RVN-IQ3_S-multilingual.gguf`](./RVN-IQ3_S-multilingual.gguf) | 12.42 GB / 11.57 GiB | [`RVN-IQ3_S-multilingual-mtp.gguf`](./RVN-IQ3_S-multilingual-mtp.gguf) | 12.87 GB / 11.99 GiB | PASS |
|
| 260 |
+
| Q3_K_S | [`RVN-Q3_K_S-multilingual.gguf`](./RVN-Q3_K_S-multilingual.gguf) | 12.07 GB / 11.24 GiB | [`RVN-Q3_K_S-multilingual-mtp.gguf`](./RVN-Q3_K_S-multilingual-mtp.gguf) | 12.53 GB / 11.67 GiB | PASS |
|
| 261 |
+
| IQ3_XS | [`RVN-IQ3_XS-multilingual.gguf`](./RVN-IQ3_XS-multilingual.gguf) | 11.97 GB / 11.15 GiB | [`RVN-IQ3_XS-multilingual-mtp.gguf`](./RVN-IQ3_XS-multilingual-mtp.gguf) | 12.42 GB / 11.57 GiB | PASS |
|
| 262 |
+
| IQ3_XXS | [`RVN-IQ3_XXS-multilingual.gguf`](./RVN-IQ3_XXS-multilingual.gguf) | 11.19 GB / 10.42 GiB | [`RVN-IQ3_XXS-multilingual-mtp.gguf`](./RVN-IQ3_XXS-multilingual-mtp.gguf) | 11.64 GB / 10.84 GiB | PASS |
|
| 263 |
+
| Q2_K | [`RVN-Q2_K-multilingual.gguf`](./RVN-Q2_K-multilingual.gguf) | 10.71 GB / 9.98 GiB | [`RVN-Q2_K-multilingual-mtp.gguf`](./RVN-Q2_K-multilingual-mtp.gguf) | 11.16 GB / 10.40 GiB | PASS |
|
| 264 |
+
| Q2_K_S | [`RVN-Q2_K_S-multilingual.gguf`](./RVN-Q2_K_S-multilingual.gguf) | 10.25 GB / 9.54 GiB | [`RVN-Q2_K_S-multilingual-mtp.gguf`](./RVN-Q2_K_S-multilingual-mtp.gguf) | 10.70 GB / 9.96 GiB | PASS |
|
| 265 |
+
| IQ2_M | [`RVN-IQ2_M-multilingual.gguf`](./RVN-IQ2_M-multilingual.gguf) | 10.00 GB / 9.32 GiB | [`RVN-IQ2_M-multilingual-mtp.gguf`](./RVN-IQ2_M-multilingual-mtp.gguf) | 10.46 GB / 9.74 GiB | PASS |
|
| 266 |
+
| IQ2_S | [`RVN-IQ2_S-multilingual.gguf`](./RVN-IQ2_S-multilingual.gguf) | 9.36 GB / 8.72 GiB | [`RVN-IQ2_S-multilingual-mtp.gguf`](./RVN-IQ2_S-multilingual-mtp.gguf) | 9.81 GB / 9.14 GiB | PASS |
|
| 267 |
+
| IQ2_XS | [`RVN-IQ2_XS-multilingual.gguf`](./RVN-IQ2_XS-multilingual.gguf) | 9.09 GB / 8.47 GiB | [`RVN-IQ2_XS-multilingual-mtp.gguf`](./RVN-IQ2_XS-multilingual-mtp.gguf) | 9.54 GB / 8.89 GiB | PASS |
|
| 268 |
+
| IQ2_XXS | [`RVN-IQ2_XXS-multilingual.gguf`](./RVN-IQ2_XXS-multilingual.gguf) | 8.43 GB / 7.85 GiB | [`RVN-IQ2_XXS-multilingual-mtp.gguf`](./RVN-IQ2_XXS-multilingual-mtp.gguf) | 8.88 GB / 8.27 GiB | PASS |
|
| 269 |
+
| IQ1_M | [`RVN-IQ1_M-multilingual.gguf`](./RVN-IQ1_M-multilingual.gguf) | 7.63 GB / 7.11 GiB | [`RVN-IQ1_M-multilingual-mtp.gguf`](./RVN-IQ1_M-multilingual-mtp.gguf) | 8.08 GB / 7.53 GiB | PASS |
|
| 270 |
+
| IQ1_S | [`RVN-IQ1_S-multilingual.gguf`](./RVN-IQ1_S-multilingual.gguf) | 7.15 GB / 6.66 GiB | [`RVN-IQ1_S-multilingual-mtp.gguf`](./RVN-IQ1_S-multilingual-mtp.gguf) | 7.60 GB / 7.08 GiB | PASS |
|
| 271 |
+
|
| 272 |
+
Vision-protected multilingual variants retain Q8_0 embeddings/output and the first/last bridge layers while quantizing the middle blocks:
|
| 273 |
+
|
| 274 |
+
| Quant | File | Size | Per-file API gate |
|
| 275 |
+
|---|---|---:|---|
|
| 276 |
+
| Q5_K_M | [`RVN-Q5_K_M-multilingual-vision.gguf`](./RVN-Q5_K_M-multilingual-vision.gguf) | 21.02 GB / 19.58 GiB | PASS |
|
| 277 |
+
| Q4_K_M | [`RVN-Q4_K_M-multilingual-vision.gguf`](./RVN-Q4_K_M-multilingual-vision.gguf) | 18.75 GB / 17.46 GiB | PASS |
|
| 278 |
+
| Q3_K_M | [`RVN-Q3_K_M-multilingual-vision.gguf`](./RVN-Q3_K_M-multilingual-vision.gguf) | 16.19 GB / 15.08 GiB | PASS |
|
| 279 |
+
|
| 280 |
+
<!-- RVN_MULTILINGUAL_V5_END -->
|
| 281 |
+
|
| 282 |
+
|
| 283 |
+
<div style="font-size: 0.85em">
|
| 284 |
+
|
| 285 |
+
| File | Size (GB / GiB) | Notes |
|
| 286 |
+
|---|---|---|
|
| 287 |
+
| `RVN-F16.gguf` | 53.81 / 50.11 | F16 reference (no NextN/MTP) |
|
| 288 |
+
| `RVN-BF16.gguf` | 53.81 / 50.11 | BF16 reference (no NextN/MTP) |
|
| 289 |
+
| `RVN-Q8_0.gguf` | 28.60 / 26.63 | Max-quality 8-bit |
|
| 290 |
+
| `RVN-Q6_K.gguf` | 22.08 / 20.57 | High-quality 6-bit |
|
| 291 |
+
| `RVN-Q5_K_M.gguf` | 19.23 / 17.91 | Balanced 5-bit |
|
| 292 |
+
| `RVN-Q5_K_S.gguf` | 18.68 / 17.40 | 5-bit small |
|
| 293 |
+
| `RVN-Q4_K_M.gguf` | 16.55 / 15.41 | Recommended 4-bit (24 GB VRAM) |
|
| 294 |
+
| `Qwen3.8-27B-Heretic-Q4_K_M.gguf` | 16.55 / 15.41 | **Legacy** (older abliteration variant, kept for download continuity) |
|
| 295 |
+
| `RVN-IQ4_NL.gguf` | 15.89 / 14.80 | legacy 4-bit non-linear produced without an imatrix; prefer `RVN-IQ4_NL-multilingual.gguf` |
|
| 296 |
+
| `RVN-Q4_K_S.gguf` | 15.59 / 14.52 | Small 4-bit |
|
| 297 |
+
| `RVN-IQ4_XS.gguf` | 15.19 / 14.15 | legacy 4-bit extra-small produced without an imatrix; prefer `RVN-IQ4_XS-multilingual.gguf` |
|
| 298 |
+
| `RVN-Q3_K_L.gguf` | 14.34 / 13.36 | Large 3-bit |
|
| 299 |
+
| `RVN-Q3_K_M.gguf` | 13.30 / 12.39 | Compact 3-bit |
|
| 300 |
+
| `RVN-IQ3_M.gguf` | 12.58 / 11.72 | imatrix 3-bit — **re-uploaded 2026-08-17** (previous file had corrupted tensor data: NaN/Inf scales + zeroed tensors from a bad quantize run; re-quantized from F16 with a fresh imatrix and verified — see note below) |
|
| 301 |
+
| `RVN-IQ3_S.gguf` | 12.42 / 11.57 | imatrix 3-bit small |
|
| 302 |
+
| `RVN-Q3_K_S.gguf` | 12.07 / 11.24 | Compact 3-bit small |
|
| 303 |
+
| `RVN-IQ3_XS.gguf` | 11.97 / 11.15 | imatrix 3-bit extra-small |
|
| 304 |
+
| `RVN-IQ3_XXS.gguf` | 11.19 / 10.42 | imatrix 3-bit extra-extra-small |
|
| 305 |
+
| `RVN-Q2_K.gguf` | 10.71 / 9.98 | 2-bit K-quant |
|
| 306 |
+
| `RVN-Q2_K_S.gguf` | 10.25 / 9.54 | 2-bit K-quant small |
|
| 307 |
+
| `RVN-IQ2_M.gguf` | 10.00 / 9.32 | imatrix 2-bit |
|
| 308 |
+
| `RVN-IQ2_S.gguf` | 9.36 / 8.72 | imatrix 2-bit small |
|
| 309 |
+
| `RVN-IQ2_XS.gguf` | 9.09 / 8.47 | imatrix 2-bit extreme small |
|
| 310 |
+
| `RVN-IQ2_XXS.gguf` | 8.43 / 7.85 | imatrix 2-bit (minimum) |
|
| 311 |
+
| `RVN-IQ1_M.gguf` | 7.63 / 7.11 | imatrix 1-bit (experimental) |
|
| 312 |
+
| `RVN-IQ1_S.gguf` | 7.15 / 6.66 | imatrix 1-bit (experimental) |
|
| 313 |
+
|
| 314 |
+
</div>
|
| 315 |
+
|
| 316 |
+
### 👁️ Vision-Protected (UD-style) Variants
|
| 317 |
+
|
| 318 |
+
These `-vision` variants apply a structural precision policy: `token_embd`, `output`, and the
|
| 319 |
+
**first 4 + last 4 transformer blocks** stay at **Q8_0**, while the middle blocks use the
|
| 320 |
+
target K-quant. A tensor audit verified 106 regex-selected overrides, 851 tensors, correct
|
| 321 |
+
per-tensor types, and 0 NaN/Inf. This describes the artifact structure; it is not a claim
|
| 322 |
+
of a separately benchmarked image-quality uplift.
|
| 323 |
+
|
| 324 |
+
| File | Size (GB / GiB) | Bridge / Middle |
|
| 325 |
+
|---|---|---|
|
| 326 |
+
| `RVN-Q5_K_M-vision.gguf` | 21.02 / 19.57 | Q8_0 bridge · Q5_K_M middle |
|
| 327 |
+
| `RVN-Q4_K_M-vision.gguf` | 18.75 / 17.46 | Q8_0 bridge · Q4_K_M middle |
|
| 328 |
+
| `RVN-Q3_K_M-vision.gguf` | 16.19 / 15.08 | Q8_0 bridge · Q3_K_M middle |
|
| 329 |
+
|
| 330 |
+
Usage — identical to the standard quants, just point at the `-vision` file:
|
| 331 |
+
|
| 332 |
+
```bash
|
| 333 |
+
llama-server -m RVN-Q5_K_M-vision.gguf --mmproj mmproj-Qwen3.8-27B-Q8_0.gguf \
|
| 334 |
+
-c 32768 -ngl 99
|
| 335 |
+
```
|
| 336 |
+
|
| 337 |
+
### 📊 Perplexity (vs F16 reference)
|
| 338 |
+
|
| 339 |
+
Measured on an RTX PRO 6000 Blackwell (full GPU offload, llama.cpp master):
|
| 340 |
+
`llama-perplexity`, tiny_shakespeare corpus, ctx 2048.
|
| 341 |
+
|
| 342 |
+
| Model | PPL | Δ vs F16 |
|
| 343 |
+
|---|---|---|
|
| 344 |
+
| `RVN-F16.gguf` | 4.5477 | — |
|
| 345 |
+
| `RVN-Q5_K_M.gguf` (standard) | 4.6493 | +2.23% |
|
| 346 |
+
| `RVN-Q5_K_M-vision.gguf` | 4.6497 | +2.24% |
|
| 347 |
+
| `RVN-Q4_K_M-vision.gguf` | 4.8751 | +7.20% |
|
| 348 |
+
| `RVN-Q3_K_M-vision.gguf` | 5.6490 | +24.2% |
|
| 349 |
+
|
| 350 |
+
The table above reports text perplexity only. The Q8_0 overrides are structurally
|
| 351 |
+
verified, but this repository does not publish a reproducible comparative image-quality
|
| 352 |
+
receipt for these files; no image-quality uplift is claimed.
|
| 353 |
+
|
| 354 |
+
> imatrix-based quants are produced from the same F16 with an activation importance
|
| 355 |
+
> matrix computed over wikitext-2-raw (original spectrum, **580 chunks**) or
|
| 356 |
+
> tiny_shakespeare (2026-08-17 re-quant additions: `IQ3_M` fix +
|
| 357 |
+
> `IQ2_S`/`IQ3_XXS`/`IQ3_XS`/`IQ3_S`, **159 chunks**, llama-imatrix, `-ngl 99`).
|
| 358 |
+
> The currently published `IQ4_XS` and `IQ4_NL` files are exceptions: an independent
|
| 359 |
+
> GGUF-header audit and the retained production script confirm they were made without
|
| 360 |
+
> `--imatrix`. Their earlier imatrix labels were incorrect; corrected wikitext-imatrix
|
| 361 |
+
> replacements (including MTP twins) are being rebuilt.
|
| 362 |
+
> The `-vision` files are quantized with K-quant defaults (no imatrix) — the bridge
|
| 363 |
+
> protection is structural (Q8_0 overrides), not imatrix-dependent.
|
| 364 |
+
|
| 365 |
+
## ⚡ MTP Speculative Decoding
|
| 366 |
+
|
| 367 |
+
Every quant ships a **`*-mtp.gguf` twin** with the official Qwen3.8 MTP draft head
|
| 368 |
+
(Q8_0; budget about 451 MB / 0.42 GiB per embedded twin) embedded. The main-model weights are byte-identical to the base file —
|
| 369 |
+
the head is appended as an extra `blk.64.nextn.*` layer set (block_count 65, `qwen35.nextn_predict_layers=1`).
|
| 370 |
+
|
| 371 |
+
The separate `mtp-RVN.gguf` file is a 1.69 GiB standalone draft-head compatibility artifact for advanced/legacy workflows. It is not a main model, cannot answer prompts by itself, and is not required by the embedded `*-mtp.gguf` twins.
|
| 372 |
+
Abliteration never touched the draft head (it operates on main-model layers 26–56), so
|
| 373 |
+
draft quality is unchanged, and speculative decoding is **output-equivalent**: same
|
| 374 |
+
tokens, just faster.
|
| 375 |
+
|
| 376 |
+
**Usage (llama.cpp ≥ b10440, PR #22673):**
|
| 377 |
+
|
| 378 |
+
```bash
|
| 379 |
+
llama-server -m RVN-IQ3_M-mtp.gguf -c 32768 -ngl 99 \
|
| 380 |
+
--spec-type draft-mtp --spec-draft-n-max 2 --parallel 1
|
| 381 |
+
```
|
| 382 |
+
|
| 383 |
+
**Measured on 2× RTX PRO 6000 Blackwell (95 GB each, full GPU offload, llama.cpp b10472):**
|
| 384 |
+
|
| 385 |
+
| Quant | Normal (t/s) | + MTP (t/s) | Δ |
|
| 386 |
+
|---|---|---|---|
|
| 387 |
+
| `Q6_K` | 61.6 | 126.2 | **+105%** |
|
| 388 |
+
| `BF16` | 29.2 | 58.2 | **+99%** |
|
| 389 |
+
| `Q8_0` | 50.6 | 98.0 | **+94%** |
|
| 390 |
+
| `IQ3_S` | 91.9 | 169.7 | **+85%** |
|
| 391 |
+
| `IQ4_XS` | 83.4 | 152.0 | **+82%** |
|
| 392 |
+
| `Q3_K_S` | 84.5 | 153.6 | **+82%** |
|
| 393 |
+
| `F16` | 29.4 | 52.9 | **+80%** |
|
| 394 |
+
| `IQ3_XS` | 94.0 | 161.9 | **+72%** |
|
| 395 |
+
| `Q3_K_L` | 78.7 | 131.3 | **+67%** |
|
| 396 |
+
| `IQ4_NL` | 80.8 | 138.0 | **+71%** |
|
| 397 |
+
| `IQ2_M` | 106.2 | 175.9 | **+66%** |
|
| 398 |
+
| `IQ2_XS` | 112.8 | 183.4 | **+63%** |
|
| 399 |
+
| `Q4_K_M` | 76.6 | 122.0 | **+59%** |
|
| 400 |
+
| `Q4_K_S` | 80.5 | 127.1 | **+58%** |
|
| 401 |
+
| `IQ3_M` | 91.3 | 144.0 | **+58%** |
|
| 402 |
+
| `Q3_K_M` | 82.6 | 129.5 | **+57%** |
|
| 403 |
+
| `IQ2_XXS` | 117.6 | 182.6 | **+55%** |
|
| 404 |
+
| `Q2_K` | 98.2 | 150.2 | **+53%** |
|
| 405 |
+
| `IQ3_XXS` | 98.5 | 138.5 | **+41%** |
|
| 406 |
+
| `IQ2_S` | 111.5 | 155.3 | **+39%** |
|
| 407 |
+
| `Q5_K_M` | 68.1 | 93.8 | **+38%** |
|
| 408 |
+
| `Q2_K_S` | 105.5 | 145.1 | **+38%** |
|
| 409 |
+
| `Q5_K_S` | 70.7 | 91.1 | **+29%** |
|
| 410 |
+
| `IQ1_S` | 127.0 | 131.7 | +3.7% |
|
| 411 |
+
| `IQ1_M` | 119.5 | 47.6 | **−60%** ⚠️ |
|
| 412 |
+
|
| 413 |
+
Average: **+55% generation speed** (128-token continuation, `--spec-draft-n-max 2 --parallel 1`).
|
| 414 |
+
**⚠️ `IQ1_M` is the exception: MTP makes it ~60% slower — use the base file for IQ1_M.**
|
| 415 |
+
`IQ1_S` gains almost nothing (+4%). All other quants gain +29% to +105%.
|
| 416 |
+
|
| 417 |
+
Community measurements on larger cards report **+33–145%** depending on GPU and
|
| 418 |
+
context. Tips: `--spec-draft-n-max 2` is the sweet spot on 16–24 GB cards (3–4 on
|
| 419 |
+
bigger/faster cards); pair with `--cache-type-k q4_0 --cache-type-v q4_0` for long
|
| 420 |
+
context; `--spec-draft-p-min 0.60–0.75` helps on bandwidth-limited rigs.
|
| 421 |
+
|
| 422 |
+
## 👁️ Vision (image understanding)
|
| 423 |
+
|
| 424 |
+
Pair any `*-mtp.gguf` with the official vision projector for full image-text-to-text:
|
| 425 |
+
|
| 426 |
+
```bash
|
| 427 |
+
llama-server -m RVN-IQ3_M-mtp.gguf --mmproj mmproj-Qwen3.8-27B-Q8_0.gguf \
|
| 428 |
+
-c 32768 -ngl 99 --spec-type draft-mtp --spec-draft-n-max 2 --parallel 1
|
| 429 |
+
```
|
| 430 |
+
|
| 431 |
+
- `mmproj-Qwen3.8-27B-Q8_0.gguf` (0.63 GB, Q8_0) is the official Qwen3.8 vision
|
| 432 |
+
projector from `ggml-org/Qwen3.8-27B-GGUF` (Apache-2.0). The vision tower is an
|
| 433 |
+
image encoder only — ARA abliteration never touched it, so it pairs cleanly with
|
| 434 |
+
every RVN quant.
|
| 435 |
+
- Verified: `RVN-Q3_K_M-mtp` + this mmproj describes images correctly (MTP active).
|
| 436 |
+
- Combo credit: [cfigueiroa/Qwen3.8-27B-RVN-vision-MTP](https://huggingface.co/cfigueiroa/Qwen3.8-27B-RVN-vision-MTP).
|
| 437 |
+
|
| 438 |
+
|
| 439 |
+
|
| 440 |
+
## Quant → GPU / Memory Guide
|
| 441 |
+
|
| 442 |
+
The values below are **model weights only**. KV cache, compute buffers, the operating system, MTP, and the vision projector need additional memory. For a new deployment, prefer the `-multilingual` filename shown here.
|
| 443 |
+
|
| 444 |
+
| Available GPU / unified memory | Safe starting point | Model weights | Practical note |
|
| 445 |
+
|---|---|---:|---|
|
| 446 |
+
| **Around 8 GB** | `RVN-IQ1_S-multilingual.gguf` | 6.66 GiB | Emergency-fit, short-context option. Full GPU offload may still fail after buffers/KV; partial CPU offload can be required. Prefer non-MTP. |
|
| 447 |
+
| **12 GB** | `RVN-IQ2_XXS-multilingual.gguf` or `RVN-IQ2_XS-multilingual.gguf` | 7.85 / 8.47 GiB | Leaves more runtime room than IQ2_M; expect visible quality loss versus Q3/Q4. |
|
| 448 |
+
| **16 GB** | `RVN-Q3_K_S-multilingual.gguf` or `RVN-Q3_K_M-multilingual.gguf` | 11.24 / 12.39 GiB | Q3_K_S leaves more context headroom; Q3_K_M trades that room for quality. |
|
| 449 |
+
| **24 GB** | `RVN-Q4_K_M-multilingual.gguf`; optionally `RVN-Q5_K_M-multilingual.gguf` | 15.41 / 17.91 GiB | Q4_K_M is the balanced default. Q5_K_M is quality-focused with less context room. Q6_K at 20.57 GiB is tight. |
|
| 450 |
+
| **32 GB+** | `RVN-Q8_0-multilingual.gguf` | 26.63 GiB | Highest-fidelity quantized option; long context still needs additional memory. |
|
| 451 |
+
| **64 GB+** | `RVN-BF16.gguf` or `RVN-F16.gguf` | 50.11 GiB | Reference/evaluation class, not an ordinary inference download. |
|
| 452 |
+
|
| 453 |
+
Budget about **451 MB / 0.42 GiB** for an embedded MTP head. Current multilingual twins add exactly 451,320,768 bytes; current legacy twins add either 451,320,736 or 451,320,768 bytes because of a 32-byte historical metadata-layout difference. The separate vision projector is about **0.63 GB**. Budget both on top of the main-model size.
|
| 454 |
+
|
| 455 |
+
## Limitations & Responsible Use
|
| 456 |
+
|
| 457 |
+
- **Reduced safety guardrails by design.** This model is not intended for use in
|
| 458 |
+
applications requiring robust safety filtering, content moderation, or deployment to
|
| 459 |
+
minors.
|
| 460 |
+
- **Certain guardrails are intentionally left in place.** Abliteration targets refusal
|
| 461 |
+
behavior on general harmful-prompt categories; a small set of hard safety-trained
|
| 462 |
+
categories is deliberately not fully removed. Behavior may vary across domains and
|
| 463 |
+
languages.
|
| 464 |
+
- Not affiliated with or endorsed by Qwen/Alibaba or trohrbaugh.
|
| 465 |
+
|
| 466 |
+
## License & Attribution
|
| 467 |
+
|
| 468 |
+
- Base model: [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B) — Apache-2.0
|
| 469 |
+
- Abliteration source: [`trohrbaugh/Qwen3.8-27B-heretic-ara`](https://huggingface.co/trohrbaugh/Qwen3.8-27B-heretic-ara) — Apache-2.0
|
| 470 |
+
- This repo: Apache-2.0. See [LICENSE](LICENSE).
|
| 471 |
+
|
| 472 |
+
## Citation
|
| 473 |
+
|
| 474 |
+
```bibtex
|
| 475 |
+
@misc{rohrbaugh2026heretic,
|
| 476 |
+
title={Qwen3.8-27B-heretic-ara: ARA Abliteration of Qwen3.8-27B},
|
| 477 |
+
author={Rohrbaugh, Tim},
|
| 478 |
+
year={2026},
|
| 479 |
+
howpublished={\url{https://huggingface.co/trohrbaugh/Qwen3.8-27B-heretic-ara}}
|
| 480 |
+
}
|
| 481 |
+
|
| 482 |
+
@misc{rvn2026,
|
| 483 |
+
title={RVN: Qwen3.8-27B Heretic Abliterated Uncensored},
|
| 484 |
+
author={0bserverx},
|
| 485 |
+
year={2026},
|
| 486 |
+
howpublished={\url{https://huggingface.co/0bserverx/Qwen3.8-27B-Heretic-Abliterated-Uncensored-GGUF}}
|
| 487 |
+
}
|
| 488 |
+
```
|
| 489 |
+
|
| 490 |
+
## Research use and responsibility
|
| 491 |
+
|
| 492 |
+
This repository is intended for legitimate research and controlled evaluation, including interpretability, alignment and refusal-behavior analysis, red-team testing, and robustness work. It is not a ready-made production safety layer. If you deploy the model or expose it to other users, you are responsible for adding suitable access controls, moderation, monitoring, and abuse prevention.
|
| 493 |
+
|
| 494 |
+
Use of these files is subject to the Apache License 2.0 and all applicable laws. You are responsible for how you operate the model and for outputs produced in your environment. To the extent permitted by law, the repository maintainers and upstream authors accept no liability for misuse or resulting harm. Generated outputs are not statements or endorsements by the maintainers, upstream creators, or their organizations.
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10813b480bd630d8c1148ccdccc9faf70afbf72cb6d46b8cf865c99112bef88f
|
| 3 |
+
size 54259602656
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:461fa227cb3d0bb49a3e8e45ec2b650f9a2e593c51a92144d5ac819f0ee8f37d
|
| 3 |
+
size 53808281888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b08c52b2168f104aeeef9aaf88f6148f14986ccf03d733e4ddb8bb6daa17784
|
| 3 |
+
size 54259602656
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f20c72c23a6564211c5e44af35ea1277d697c009ce8a25ab28d100447e0f155a
|
| 3 |
+
size 53808281888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5edfe902abc5d2f83942f513f98df919129978b63ed36c8ba63ec4ad6ef8bc5b
|
| 3 |
+
size 8082404768
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:04b045b94d02355478865224c7612417f489a36f0d6681450001ad5e5389cd4c
|
| 3 |
+
size 8082404832
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:94d02f07eae45f0d71b56e3800ede1d28b9e18b4ab7685f552069a32836039dc
|
| 3 |
+
size 7631084064
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01a709e622165dddc275fb19c12444e20c6ecae18c068725db7d1aa2ee5fa45e
|
| 3 |
+
size 7631084032
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77e292d92da4657f28ab1b8bfefdbadb1552d3e6daa17ff35e9dacce6e9ded59
|
| 3 |
+
size 7601145248
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:912cd2111d20ceab8273966667b79884d1194bd401e182336dac4e2bdf2b5ade
|
| 3 |
+
size 7601145312
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:14331414fbf959c440d168ea39a005a8a0d8775b853e15f9e1d9df758f479737
|
| 3 |
+
size 7149824544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6718c15c056efa65755b9db664925425ad5111fabbf87397b77e82d9c223eee3
|
| 3 |
+
size 7149824512
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc5e31bb27ba69ce4a0b0e92b71c4400a509578acc26b5944a64db6c9f2606c0
|
| 3 |
+
size 10455913888
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:949967fd36fab7dd29f1a886a0e82d9566456e17b6bd1cb9da01983c55a73501
|
| 3 |
+
size 10455913952
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0fb26b1bd6fdf9c3eb84cbd97ce9405221bfce979cbf3c00ceaee6848682214
|
| 3 |
+
size 10004593184
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a531c26993bb9ed91e299a025006915dc343285dc6dfabfd7d477370e42eb189
|
| 3 |
+
size 10004593152
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:16256ace1d398695150ac971470062e64e6a992ebe6ee05492ef0e7af628dff7
|
| 3 |
+
size 9814234560
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f6a7a567e4e789b9391996a7da59d2b11850fc79d167f178575847d5a186d767
|
| 3 |
+
size 9814234592
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88c39f3a7297f0f4d3d85a8d02fff40202b0f0d490444f77b2d57fb99a099b8a
|
| 3 |
+
size 9362913824
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d0973eabea77748e02f114d74f149a74f4d878a09c56d47a3dd0bb9af36fada
|
| 3 |
+
size 9362913792
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1107edd76991d5faee85781ec20df9511a2a41c19142158e7d14642300fafcf
|
| 3 |
+
size 9541911968
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ecdd5d7192cc146078baf601d085eed25acbd6784d9313ad3f955594217cf13
|
| 3 |
+
size 9541912032
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e7995899191c94875b3962443320452cd092608c06caae2b02e84a27bf2ae61
|
| 3 |
+
size 9090591264
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:991858c2e6ed47347afbf5a35e47180ec7defd2d7b5e2ffbd705e4163241ea0e
|
| 3 |
+
size 9090591232
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:323b78d7ac87ccb546d885c7dd7f01da79dc97335bdd93e4ca4cf34b1de6d384
|
| 3 |
+
size 8884503968
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4ce488ea9b2ae93216b318df449e0870cf155df27657137a6e0b0d300674700a
|
| 3 |
+
size 8884504032
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08a157f354947a47df0aeca69f80d2477419341ab56ed1f5a2eb2f38bc994abd
|
| 3 |
+
size 8433183264
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36578db18a17e726ff2de9bb459474d7a32d3822a35429ef026015335a57683f
|
| 3 |
+
size 8433183232
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49b3e9cf17ea9e7de224bb1f4e60930798c99ba07bc2b6765c44f5e27c83304b
|
| 3 |
+
size 13032195520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6deae4e6a0883fcf9a0e440902ef05a10b7a029d2717346c53b01c157c8a83db
|
| 3 |
+
size 13032195552
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d0d060e9f0625e6eaeb40ce35c3344d6d6b8be2231f6f2a44eb19cc380fbf9fa
|
| 3 |
+
size 12580874784
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0f64d73d2ccfb5333a2e9dde9b079200d2a3e46f9ebaf19bc1a3cf14489d06b
|
| 3 |
+
size 12580874752
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ce579dd7a81067c008089d292c36c451cf00796cb643ee9312d3dde10f7ca49
|
| 3 |
+
size 12870649280
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:48766d8382bf4e609402c51b2acc0b591f3d507e9eedc10e2ed7e3aa9030450b
|
| 3 |
+
size 12870649312
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f8babfae3f1ee67f29e0c79154d71838a8f30f18bc7ada16b9e35bbf22dc5e30
|
| 3 |
+
size 12419328544
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea1970358504bc9c0dd2fa8181820b3b6dc46951afe7d4473a06de34711f0606
|
| 3 |
+
size 12419328512
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:abcb0d6e066209be5703353aa003ae2c393d57527e5c1d1468eafee32b9325c3
|
| 3 |
+
size 12418450880
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f01165ccb5e818f44b9d719305cdd37066a2233e1f49d75a8f8557c2a4a46f4
|
| 3 |
+
size 12418450912
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a4fb2de73a9e61878affec30ba17a864b219f7aab21c26137ded4d7f159ecd00
|
| 3 |
+
size 11967130144
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fadbf639ade9862c426de3fbc0a5330557ba2a871041eef02f1d771701fbdb7
|
| 3 |
+
size 11967130112
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:99a6d6ae8ab3ecbefb0d1a0830d25f7b25f9168c83dfe8ab0266be023eb2e3f9
|
| 3 |
+
size 11637691840
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:338955bd8d67908afb4093b8a7b386dcfcd6eb6184a2171e5d6731c1d296abf6
|
| 3 |
+
size 11637691872
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b4460c920ef12ece80f8a7e6896e9e3990cf90f477d7452c044f832a379287d9
|
| 3 |
+
size 11186371104
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e0e213d20eb289b081df65a403e118b9e5c5b932f75521703aaffc9d0b6f5e0
|
| 3 |
+
size 11186371072
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dae10ccc69361055194867ad25ccb14b4043668d7d666b1028175e0c4bc72200
|
| 3 |
+
size 16342377696
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c443c8910022bc6a11ce0dce1a0157f46df10f7f8030119fb82603dbf836bb7
|
| 3 |
+
size 16253248992
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7317d51ad903f9c547450070e3ce2aad74d7f27f6f02784e61446c2d01d0d8bf
|
| 3 |
+
size 15801928224
|