This is
NVIDIA Nemotron Cascade 2 30B — a 30B parameter hybrid model with THREE layer types: Mamba-2 SSM + MoE (128 experts, top-6) + Attention. One of the most architecturally advanced small models available.
Also see:
JANG_2L version — 10 GB, 99.7% HarmBench, 66.8% MMLU (fits on 16 GB Macs)
Surgery reduced MMLU by ~5% — safety guardrails were slightly entangled with reasoning pathways.
1from jang_tools.loader import load_jang_model
2from mlx_lm import generate
3
4model, tokenizer = load_jang_model("dealignai/Nemotron-Cascade-2-30B-A3B-JANG_4M-CRACK")
5
6messages = [{"role": "user", "content": "Your prompt here"}]
7prompt = tokenizer.apply_chat_template(
8 messages, add_generation_prompt=True, tokenize=False)
9
10response = generate(model, tokenizer, prompt=prompt, max_tokens=2000)
11print(response)
1prompt = tokenizer.apply_chat_template(
2 messages, add_generation_prompt=True,
3 enable_thinking=False, tokenize=False)
This model is provided for research and educational purposes. The creators are not responsible for any misuse. By downloading this model, you agree to use it responsibly and in compliance with applicable laws.