Instructions to use modrill/Qwen3-4B-Base-code-v4-nothink with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use modrill/Qwen3-4B-Base-code-v4-nothink with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="modrill/Qwen3-4B-Base-code-v4-nothink") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("modrill/Qwen3-4B-Base-code-v4-nothink") model = AutoModelForCausalLM.from_pretrained("modrill/Qwen3-4B-Base-code-v4-nothink", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.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(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use modrill/Qwen3-4B-Base-code-v4-nothink with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "modrill/Qwen3-4B-Base-code-v4-nothink" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "modrill/Qwen3-4B-Base-code-v4-nothink", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/modrill/Qwen3-4B-Base-code-v4-nothink
- SGLang
How to use modrill/Qwen3-4B-Base-code-v4-nothink 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 "modrill/Qwen3-4B-Base-code-v4-nothink" \ --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": "modrill/Qwen3-4B-Base-code-v4-nothink", "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 "modrill/Qwen3-4B-Base-code-v4-nothink" \ --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": "modrill/Qwen3-4B-Base-code-v4-nothink", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use modrill/Qwen3-4B-Base-code-v4-nothink with Docker Model Runner:
docker model run hf.co/modrill/Qwen3-4B-Base-code-v4-nothink
Qwen3-4B-Base Code V4 NoThink (merged)
Arm ID: Q4B-NOTHINK
Run ID: t30b2507-q4b-nothink-v4-tail151643
Merged full bf16 weights used for the official DEV256 NoThink evaluation. Tokenizer files in this repo are the eval-caliber bundle (qwen3-v4-tail151643); they overlay any tokenizer files that were present in the merge directory (the merge tree's tokenizer.json was a different, larger file).
Single-seed exploratory result, not a preregistered confirmatory claim.
Base model
- Hugging Face:
Qwen/Qwen3-4B-Base - Revision:
906bfd4b4dc7f14ee4320094d8b41684abff8539
Training
- Method: LoRA r64 / α128 on seven projections (
q_proj,k_proj,v_proj,o_proj,gate_proj,up_proj,down_proj), then merged into full-model bf16 safetensors - Data: NoThink code SFT (paired V4, physical 2-epoch concat)
- Endpoint (score): step 142, 9,455,736 assistant tokens — endpoint-as-score, no checkpoint picking
- Train seed 42; LR
1e-4; context 8192; AdamW; cosine by assistant-token dose - Host: mathbox; eval tokenizer renderer
qwen3-v4-tail151643
Evaluation
- Suite: official LiveCodeBench DEV256
- Seed 3407, mode NoThink,
max_model_len8192, vLLM 0.28.0 - Metric: sandbox pass@1 = passed / 256
- This arm: 67/256 (26.2%), caps 99
- Base (
Qwen/Qwen3-4B-Base, same NoThink protocol): 36/256 (14.1%), caps 48 - McNemar exact p = 7.8e-07
Inference notes
- Use this repository's tokenizer and
chat_template.jinja. - NoThink: do not prefill
<think>; if the template acceptsenable_thinking, keep it false. - Stop token ids: 151643 (
<|endoftext|>) and 151645 (<|im_end|>). - Eval sampling used temperature 0.7, top_p 0.8, top_k 20.
Weight checksum
model.safetensors(8,822,894,520 bytes):sha256:4309b112b8635695282a1c18f7d9e301862ef028c83e2b000a34caa08b47ef1f
OFFICIAL_MERGE_RECEIPT.json is included for merge provenance. LoRA adapter checkpoints are not in this repo.
- Downloads last month
- -
Model tree for modrill/Qwen3-4B-Base-code-v4-nothink
Base model
Qwen/Qwen3-4B-Base