Open LLMs/sakamakismile

Open-Weight LLM · Private & Custom AI

Qwen3.6-27B-Text-NVFP4-MTP

Text-only 27B quantized LLM optimized for private, high-throughput deployment on Blackwell GPUs—speculative decoding built-in, data stays in your environment.

Qwen3.6-27B-Text-NVFP4-MTP is an NVFP4-quantized variant of Qwen3.6-27B with a restored multi-token prediction (MTP) head, designed for vLLM on Blackwell SM120 hardware. An ops/AI team would deploy this privately to run text automation at 1.7× the unoptimized baseline throughput, with full context control and zero data egress—ideal for building internal knowledge agents, support automation, and high-volume ops workflows without relying on external APIs.

16.7B
Parameters
apache-2.0
License (OSI/permissive)
Unknown
Context
339.8k
Downloads

Model facts

Developersakamakismile
Parameters16.7B
Context windowUnknown
Licenseapache-2.0 — OSI/permissive
Tasktext-generation
GatedNo
Downloads339.8k
Likes80
Updated2026-04-29
Sourcesakamakismile/Qwen3.6-27B-Text-NVFP4-MTP

Private deployment

Run Qwen3.6-27B-Text-NVFP4-MTP in your own environment

Deploy on a single RTX PRO 6000 Blackwell (~15 GB VRAM for NVFP4 + bf16 components) or RTX 5090 using vLLM with `--quantization modelopt` and `--speculative-config` for MTP. Data stays entirely in your datacenter or VPC; no model telemetry or external calls required. Reproduction pipeline is open-source (lna-lab/GGUF-to-NVFP4-SM120), so you can rebuild or audit the quantization locally if needed.

Operational AI use cases

01

Internal Knowledge Agent & Support Automation

Index your internal docs, runbooks, and past tickets into a retriever, then use this model to generate answers on-prem. Handle 2–7 concurrent support requests at 256K context (full resolution of long ticket threads) without switching tabs to external APIs. Speculative decoding reduces per-token latency, improving response time for long-form troubleshooting.

02

Operational Workflow Triage & Routing

Parse incoming incident summaries, emails, or Slack messages—classify, extract priority/owner, auto-draft handoff notes. 27B handles nuance better than smaller models; NVFP4 quantization + MTP lets you run classification on 500+ messages/hour on single hardware without scaling to a cluster. Results stay in your internal observability stack.

03

Bulk Document Processing & Compliance Prep

Batch-process contracts, policy docs, or audit logs for keyword extraction, redaction templates, or structured summarization. At 1.7× throughput vs. baseline, you can process 1000 pages/hour on one GPU. No third-party SaaS document API fees; full audit trail of what was extracted and where it's stored.

Custom AI

As a base for custom AI

Use this as the backbone for a custom internal AI product: e.g., a Slack bot for ops, a web dashboard for knowledge retrieval, or a batch workflow orchestrator. The restored MTP head and modelopt quantization are production-ready; you can fine-tune on proprietary data (e.g., company terminology, style guides) or add a LoRA adapter without retraining from scratch. Integrate via vLLM's OpenAI-compatible API or HuggingFace Transformers pipeline.

In the operating system

Where it fits

Sits in the **Agent / Reasoning layer** of an AI OS. Feed it structured context (retrieved docs, recent tickets, system state) from a knowledge layer, run inference via vLLM orchestration, and pipe outputs to workflow automation (ticketing, Slack, Jira). Speculative decoding makes it fast enough for real-time agent loops; private hosting keeps latency and compliance predictable.

Data control & security

Private self-hosted deployment means input prompts, retrieved documents, and model outputs never touch third-party servers. Your data remains in your VPC, on-prem, or isolated cloud account—compliance and data residency are architectural benefits, not model guarantees. VRAM isolation on the GPU is standard hardware compartmentalization; Qwen3.6 does not include homomorphic encryption or formal threat-resistance. Audit logging, access controls, and secrets rotation remain your responsibility.

Hardware footprint

**NVFP4 quantization**: ~14 GB. **Breakdown estimate**: base model NVFP4 (~13.2 GB) + MTP head bf16 (~850 MB) + lm_head bf16 (~110 MB) + KV cache overhead. **With 256K context @ KV FP8**: ~491 MB per concurrent request. On RTX PRO 6000 Blackwell (48 GB VRAM), safe for 2–7 concurrent full-context requests depending on sequence length and `--max-num-seqs` setting.

Integration

vLLM exposes an OpenAI-compatible `/v1/completions` and `/v1/chat/completions` endpoint; drop in a Vercel AI SDK, LangChain, or LlamaIndex integration. For async workflows, use vLLM's AsyncLLMEngine or Ray-backed batch API. Quantization format is `modelopt` (native vLLM path on Blackwell); ensure your deployment tooling (Docker, K8s) has CUDA 12.8+ and `nvidia-modelopt` 0.43.0+. Output integration via webhooks, database writes, or message queues (Kafka, SQS) to downstream ops systems.

When it's not the right fit

  • Your primary use case is vision (image + text). This model strips the vision tower for text-only speed; use the parent Qwen3.6-27B-NVFP4 (without `-Text`) if you need VLM.
  • You need < 5ms latency per token or sub-millisecond inference. 27B + even quantized will hit ~15–20 ms per token on single GPU; smaller models (7B quantized) or speculative prefill will be faster.
  • Your hardware is older (pre-Blackwell, e.g., A100, H100). NVFP4 quantization is optimized for Blackwell SM120; should work on Ada but vLLM's `compressed-tensors` fallback path may be slower than the advertised 1.7× gains.
  • Your team has no vLLM / deployment expertise. Speculative decoding config and KV cache tuning require hands-on debugging; not a zero-config drop-in.

Alternatives to consider

Meta Llama 3.1 70B (quantized, self-hosted)

Larger, stronger reasoning; requires 2–3× more VRAM. No speculative decoding built-in. Better if you need broad knowledge and can afford the hardware; worse for throughput-constrained ops.

Mistral Large (local quantized variant)

Similar size, different training. Less mature speculative-decoding support in open implementations. Consider if you want a non-Qwen alternative; Qwen3.6 has better multilingual ops support (Arabic, Japanese, etc.).

Qwen3.5-27B-Text-NVFP4-MTP (earlier sibling)

Slightly smaller, same quantization benefits. Use if you want to test the stack with less VRAM overhead before committing to Qwen3.6; expect ~5–10% lower accuracy on edge cases.

FAQ

Can I fine-tune this model on proprietary company data?

Yes. Apache 2.0 permits derivatives. Load via HuggingFace Transformers, apply LoRA (e.g., with `peft`) to the non-quantized layers, or use full fine-tuning if you rebuild from the base model. Quantized checkpoint is inference-optimized; for training, start with the parent Qwen3.6-27B and quantize after.

What does the Apache 2.0 license mean for commercial use?

You can deploy this in production, build products on top, and sell services—no royalties or license notifications required. You must include a copy of the Apache 2.0 license in your distribution. Qwen3.6 base model is also Apache 2.0, so no hidden restrictions. Review your own legal team for liability; the model is provided as-is.

How do I actually deploy this privately—Docker? Kubernetes?

Common pattern: containerize vLLM with this model using an NVIDIA CUDA image, mount the model from HuggingFace or a private registry, and expose the OpenAI-compatible API on localhost or a private network endpoint. For Kubernetes, use StatefulSets with GPU node affinity and PVC for model caching. LLM.co can help architect the full stack.

What's the difference between this and the earlier `Qwen3.6-27B-NVFP4` without `-Text-MTP`?

This model uses `modelopt` quantization (faster on Blackwell) and has the MTP head restored for speculative decoding; the earlier version uses `compressed-tensors` (slower) and dropped MTP during export. This variant also strips vision to save space. Use this if text-only and speed matter; use the earlier one if you need vision or are not on Blackwell.

Build your private ops AI today.

Deploy Qwen3.6-27B-Text-NVFP4-MTP on your infrastructure with LLM.co. We help companies architect self-hosted LLM systems for support automation, knowledge agents, and workflow orchestration—keeping your data private and your models under your control. Let's talk.