Uncensored GGUF quantizations of a Heretic-abliterated version of
browser-use/bu-30b-a3b-preview.
The source model is a Qwen3-VL MoE vision-language model with 30B total parameters and about 3B active parameters. These GGUFs are intended for llama.cpp-compatible runtimes that support the qwen3vlmoe architecture.
Note: the main model files are Q8 and Q4. The mmproj BF16 file is only the small vision/projector companion file needed by some llama.cpp multimodal workflows.
Lower refusal count means fewer refusal-style completions on the evaluation prompt set. Lower KL divergence means the model's first-token behavior on harmless prompts stayed closer to the original model.
The exported model used the ablation parameters listed above. This build was produced with Heretic v1.2.0 plus a local patch exposing broader Optuna search ranges and noninteractive export selection.
1git clone https://github.com/ggml-org/llama.cpp
2cd llama.cpp
3python3 -m pip install -r requirements.txt
4cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
5cmake --build build --config Release -j"$(nproc)"
6
7python3 convert_hf_to_gguf.py /path/to/exported-hf \
8 --outtype bf16 \
9 --model-name BU-30B-A3B-Heretic \
10 --outfile BU-30B-A3B-Heretic-BF16.gguf
11
12./build/bin/llama-quantize \
13 BU-30B-A3B-Heretic-BF16.gguf \
14 BU-30B-A3B-Heretic-Q8_0.gguf \
15 Q8_0
16
17./build/bin/llama-quantize \
18 BU-30B-A3B-Heretic-BF16.gguf \
19 BU-30B-A3B-Heretic-Q4_K_M.gguf \
20 Q4_K_M
21
22python3 convert_hf_to_gguf.py /path/to/exported-hf \
23 --mmproj \
24 --outtype bf16 \
25 --model-name BU-30B-A3B-Heretic \
26 --outfile mmproj-BU-30B-A3B-Heretic-BF16.gguf
Use the Q8 file for the highest-quality GGUF experience. Use Q4_K_M when memory is the limiting factor.