Text Generation
Transformers
Safetensors
English
qwen3_5
image-text-to-text
strategic-planning
decision-intelligence
operational-intelligence
nullxes
shuten
merged-lora
conversational
Instructions to use MagistrTheOne/SHUTEN-DOJI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MagistrTheOne/SHUTEN-DOJI with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="MagistrTheOne/SHUTEN-DOJI") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("MagistrTheOne/SHUTEN-DOJI") model = AutoModelForMultimodalLM.from_pretrained("MagistrTheOne/SHUTEN-DOJI") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use MagistrTheOne/SHUTEN-DOJI with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "MagistrTheOne/SHUTEN-DOJI" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "MagistrTheOne/SHUTEN-DOJI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/MagistrTheOne/SHUTEN-DOJI
- SGLang
How to use MagistrTheOne/SHUTEN-DOJI 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 "MagistrTheOne/SHUTEN-DOJI" \ --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": "MagistrTheOne/SHUTEN-DOJI", "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 "MagistrTheOne/SHUTEN-DOJI" \ --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": "MagistrTheOne/SHUTEN-DOJI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use MagistrTheOne/SHUTEN-DOJI with Docker Model Runner:
docker model run hf.co/MagistrTheOne/SHUTEN-DOJI
NULLXES SHUTEN-DŌJI
SHUTEN — strategic intelligence system by NULLXES DAI.
This is not a chatbot. It produces structured operational intelligence:
State → Causes → Options → Impact → Future State → Confidence
Merged weights: Qwen3.6-27B + SHUTEN Constitution SFT v2 (H200 MVP).
Roadmap status
| Stage | Item | Status |
|---|---|---|
| Infra | H200 train → vLLM → LoRA serve | ✅ Done |
| Data v1 | bootstrap trajectories | ✅ Done (legacy — do not use for SFT) |
| SFT v1 | smoke / warm-start | ✅ Done — planner failed (Step N poison) |
| SFT v2 | 50 Constitution gold examples | ✅ Done |
| Eval A–H | side-by-side vs base Qwen | ✅ Done — v2 0 poison, 7/8 struct wins |
| SFT v2.1 | 110–130 gold + reviewed LLM + failure cases | ⬜ Next |
| Eval v2 | 20–30 held-out planner cases | ⬜ Next |
| DPO | preference pairs (chosen vs rejected plans) | ⬜ After eval v2 pass |
| IMPACT cluster | consequence prediction fine-tune | ⬜ Phase 2 |
| NATIVE MoE | custom NULLXES architecture | ⬜ Phase 3 |
Base model
| Foundation | Qwen/Qwen3.6-27B |
| Method | QLoRA SFT (rank 64, alpha 128) → merged into full weights |
| Train data | 50 Constitution ShareGPT examples (no bootstrap poison) |
| Checkpoint | shuten-sft-h200-v2 on RunPod H200 |
Training metrics (SFT v2)
| Metric | Value |
|---|---|
| Train examples | 50 |
| Eval examples | 10 |
| Epochs | 3 |
| Train loss | 1.03 |
| Eval loss | 0.49 |
| Trainable params | 41.9M LoRA (merged at export) |
Eval metrics (A–H, side-by-side)
| Metric | qwen_base | SHUTEN v2 |
|---|---|---|
Poison (Step N:, tool_use, …) |
0/8 | 0/8 |
| Avg structure markers | 1.5 | 4.12 |
| Wins vs base (structure) | — | 7/8 |
| Avg output length | 5139 | 4684 |
Verdict: Constitution SFT removes bootstrap action-trace failure. Content quality still MVP — v2.1 dataset iteration required before DPO.
Usage (vLLM — no LoRA adapter needed)
python -m vllm.entrypoints.openai.api_server \
--model NULLXES/SHUTEN-DOJI \
--max-model-len 8192 \
--dtype bfloat16 \
--trust-remote-code \
--language-model-only \
--gdn-prefill-backend triton
curl http://localhost:8000/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "NULLXES/SHUTEN-DOJI",
"messages": [
{"role": "system", "content": "You are SHUTEN, strategic intelligence by NULLXES DAI. Reason: State → Causes → Options → Impact → Future State → Confidence."},
{"role": "user", "content": "[SHUTEN business]\n\nWorld State:\nRevenue down 18%. Backlog up 42%.\n\nObjective:\nRestore EBITDA margin >12% in 90d.\n\nRequired Output:\nState → Causes → Options → Impact → Future State → Confidence"}
],
"max_tokens": 1200,
"temperature": 0.3
}'
Limitations
- MVP release — 50 training examples only
- May still prefix with Qwen-style reasoning traces
- Not trained for DPO / impact cluster yet
- Requires ~54GB VRAM at bf16 (single H200 / A100 80GB)
Links
- Code: github.com/MagistrTheOne/SHUTEN-D-JI
- Base: Qwen/Qwen3.6-27B
Citation
@misc{nullxes-shuten-doji-v2,
title={NULLXES SHUTEN-DŌJI: Strategic Intelligence (Constitution SFT v2)},
author={NULLXES DAI},
year={2026},
note={Merged Qwen3.6-27B + Constitution LoRA. MVP eval 7/8 struct wins, 0 poison.}
}
- Downloads last month
- 82