CoolFace
Modelpublic

Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
18likes1kdownloads
Model Card

SuperQwen-AgentWorld-35B-A3B-abliterated

SuperQwen-AgentWorld-35B-A3B-abliterated is a fused 35B total / 3B activated checkpoint derived from Qwen/Qwen-AgentWorld-35B-A3B.

This release combines two post-training stages:

  1. 1.Obliteratus false-refusal pass - a weight-space pass designed to reduce unnecessary refusals on benign, authorized, and defensive tasks.
  2. 2.Supertune post-training - targeted post-training for AgentWorld observation formatting, direct task completion, JSON/tool formatting, Korean technical answers, and regression resistance.

The result is a single checkpoint with no runtime adapter requirement.

Benchmark Growth

The comparison target is the original Qwen-AgentWorld-35B-A3B checkpoint. The public top-5 500 suite is the primary improvement target for this release.

BenchmarkQwen-AgentWorld-35B-A3B originalSuperQwen-AgentWorld-35B-A3B-abliteratedDelta
Overall public top-5 50038.866.6+27.80
GPQA Diamond32.042.0+10.00
MMLU-Pro50.064.0+14.00
IFEval51.063.0+12.00
HumanEval+16.075.0+59.00
MBPP+45.089.0+44.00

AgentWorldBench Proxy

Official AgentWorldBench scoring requires an LLM judge. The table below is a deterministic proxy suite over sampled AgentWorldBench rows, used for release gating and regression checks. The final release applies stricter response-integrity guards to prevent replayed turns, malformed fences, and tool-wrapper artifacts; this improves release-surface cleanliness but lowers the proxy score versus the unguarded original on this sample.

AgentWorldBench proxyOriginalSuperQwenDelta
Overall proxy score98.1495.82-2.32
android100.093.5-6.50
mcp100.095.12-4.88
os93.593.5+0.00
search98.3896.75-1.63
swe100.0100.0+0.00
terminal95.1291.88-3.24
web100.0100.0+0.00

Release Validation

CheckResult
Release bugcheck8/8
Release-surface response audit findings0

Quantized Variants

VariantRepositoryNotes
Original BF16Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliteratedThis repository
NVF4 / NVFP4 4-bitJiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-nvf4MLX NVFP4 4-bit quantization
MLX 4-bitJiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-mlx-4bitMLX affine 4-bit quantization
GGUF 4-bitJiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated-gguf-4bitllama.cpp GGUF 4-bit quantization

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Jiunsong/SuperQwen-AgentWorld-35B-A3B-abliterated"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype="auto",
    device_map="auto",
    trust_remote_code=True,
)

messages = [
    {
        "role": "system",
        "content": "You are a language world model simulating a Linux terminal environment. Given the user's command, predict the terminal output.",
    },
    {"role": "user", "content": "Action: execute_bash\nCommand: ls -la /home/user/project/"},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=2048, temperature=0.6, top_p=0.95, top_k=20)
print(tokenizer.decode(outputs[0][inputs.input_ids.shape[-1]:], skip_special_tokens=True))

Notes

  • —This release is optimized for direct task completion, AgentWorld-style environment simulation, and reduced unnecessary refusals.
  • —Safety-floor checks are retained in the release bugcheck.
  • —Use quantized builds when runtime size is more important than exact BF16 fidelity.