Sovereign Judge 35B — All Variants
Collection
All variants of the Sovereign Judge: GGUF (Ollama), GPTQ (vLLM), BF16 merged, LoRA adapter. • 5 items • Updated
How to use h3rb3rn/Qwen3-MoE-35B-Sovereign-Judge-v3-LoRA with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("/scratch/project_465003058/hornphil/hf_cache/models--Qwen--Qwen3.6-35B-A3B/snapshots/995ad96eacd98c81ed38be0c5b274b04031597b0")
model = PeftModel.from_pretrained(base_model, "h3rb3rn/Qwen3-MoE-35B-Sovereign-Judge-v3-LoRA")LoRA adapter (PEFT) for the Sovereign Judge model in the
MoE Sovereign project.
Fine-tuned on Qwen/Qwen3-30B-A3B (30B total, ~3B active, 256 experts) for
paraconsistent conflict arbitration and quality-assurance evaluation in
multi-expert orchestration pipelines.
For the full model description, architecture, output schema, and deployment instructions, see the GGUF repository.
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base = AutoModelForCausalLM.from_pretrained(
"Qwen/Qwen3-30B-A3B",
trust_remote_code=True,
dtype="auto",
)
tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-30B-A3B")
model = PeftModel.from_pretrained(base, "h3rb3rn/Qwen3-MoE-35B-Sovereign-Judge-v3-LoRA")
| Repository | Contents |
|---|---|
| GGUF (this model, quantised) | Q4_K_M and F16 GGUF — recommended for Ollama / llama.cpp |
| Merged BF16 | Full merged model (no adapter loading required) |
| Parameter | Value |
|---|---|
| Base model | Qwen/Qwen3-30B-A3B |
| LoRA rank / alpha | r = 64, α = 128 |
| Dataset | paraconsistent_large.jsonl (90 103 examples, DE/EN, Alpaca format) |
| Epochs | 3 |
| Total steps | 2 112 |
| Learning rate | 2 × 10⁻⁴ |
| Hardware | 8 × AMD MI250X (LUMI-G) |
| Final train loss | 0.3032 |
| Mean token accuracy | 86.72 % |