CoolFace
Modelpublic

AMAImedia/Qwen3-8B-Nemotron-Orchestrator-NOESIS-AWQ-INT4

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes72downloads
Model Card

NOESIS / AMAImedia

Released as part of the NOESIS Professional Multilingual Dubbing Automation Platform (framework: DHCF-FNO — Deterministic Hybrid Control Framework for Frozen Neural Operators).

<!-- AMAIMEDIAQWENLANGUAGESUPPORTSTART -->

Language support

This Qwen3-derived model follows the official Qwen3 language coverage (119 languages and dialects):

English, French, Portuguese, German, Romanian, Swedish, Danish, Bulgarian, Russian, Czech, Greek, Ukrainian, Spanish, Dutch, Slovak, Croatian, Polish, Lithuanian, Norwegian Bokmål, Norwegian Nynorsk, Persian, Slovenian, Gujarati, Latvian, Italian, Occitan, Nepali, Marathi, Belarusian, Serbian, Luxembourgish, Venetian, Assamese, Welsh, Silesian, Asturian, Chhattisgarhi, Awadhi, Maithili, Bhojpuri, Sindhi, Irish, Faroese, Hindi, Punjabi, Bengali, Oriya, Tajik, Eastern Yiddish, Lombard, Ligurian, Sicilian, Friulian, Sardinian, Galician, Catalan, Icelandic, Tosk Albanian, Limburgish, Dari, Afrikaans, Macedonian, Sinhala, Urdu, Magahi, Bosnian, Armenian; Chinese (Simplified Chinese, Traditional Chinese, Cantonese), Burmese; Arabic (Standard, Najdi, Levantine, Egyptian, Moroccan, Mesopotamian, Ta’izzi-Adeni, Tunisian), Hebrew, Maltese; Indonesian, Malay, Tagalog, Cebuano, Javanese, Sundanese, Minangkabau, Balinese, Banjar, Pangasinan, Iloko, Waray (Philippines); Tamil, Telugu, Kannada, Malayalam; Turkish, North Azerbaijani, Northern Uzbek, Kazakh, Bashkir, Tatar; Thai, Lao; Finnish, Estonian, Hungarian; Vietnamese, Khmer; Japanese, Korean, Georgian, Basque, Haitian, Papiamento, Kabuverdianu, Tok Pisin, Swahili.

<!-- AMAIMEDIAQWENLANGUAGESUPPORTEND -->


license: other licensename: nvidia-open-model-license licenselink: LICENSE language:

  • —en library_name: transformers tags:
  • —qwen3
  • —qwen3-119-languages
  • —supports-119-languages
  • —multilingual
  • —language-support
  • —awq
  • —int4
  • —quantization
  • —orchestration
  • —tool-calling
  • —noesis
  • —dhcf-fno
  • —qwen3 basemodel: nvidia/Nemotron-Orchestrator-8B quantizedby: AMAImedia pipeline_tag: text-generation ---

Qwen3-8B-Nemotron-Orchestrator-NOESIS-AWQ-INT4

AWQ INT4 quantization of [nvidia/Nemotron-Orchestrator-8B](https://huggingface.co/nvidia/Nemotron-Orchestrator-8B) optimized for low-VRAM consumer hardware (RTX 3060 6 GB).

Released as part of the NOESIS Professional Multilingual Dubbing Automation Platform (framework: DHCF-FNO — Deterministic Hybrid Control Framework for Frozen Neural Operators).


⚠️ License notice

This model inherits the NVIDIA Open Model License from the upstream nvidia/Nemotron-Orchestrator-8B. The base model is designated by NVIDIA as "for research and development only".

This AWQ derivative is published to make the model accessible to the broader research and development community on consumer GPUs. Users are responsible for compliance with NVIDIA's license terms — see the LICENSE file in this repository for the full text.

By downloading or using this model you agree to the upstream NVIDIA license.


Model summary

PropertyValue
Base modelnvidia/Nemotron-Orchestrator-8B
Underlying architectureQwen3-8B (decoder-only transformer, dense, NOT MoE)
Original precisionFP32 safetensors (~32 GB)
Quantized precisionAWQ INT4 (groupsize=128, GEMM, zeropoint=True)
Vocab size151936
LanguageEnglish (per base model)
Disk footprint~4.5 GB
Inference VRAM~5.0 GB (full-resident on 6 GB GPU)
Quantization libraryAutoAWQ 0.2.9
Calibration set128 in-house orchestration / tool-calling prompts, maxseqlen=512
RNG seed1729 (NOESIS reproducibility lock)

A companion BF16 reference checkpoint is also published: amaimedia/Nemotron-Orchestrator-8B-Qwen3-BF16-NOESIS.


Why this quantization

The original Nemotron-Orchestrator-8B is shipped in FP32 (~32 GB on disk) which does not fit any consumer GPU. Existing community quantizations exist (mostly GGUF) but none is calibrated specifically for orchestration / tool-calling scale search and packaged for the AutoAWQ GEMM kernel path that integrates directly with transformers and vllm on Windows hosts.

This AWQ build:

  1. 1.Fits inside the 4.5 GB SEALED VRAM window of the NOESIS specialist sequential-swapping protocol
  2. 2.Uses GEMM kernel (compatible with device_map={"":0} — no CPU offload)
  3. 3.Provenance-tracked (noesis_provenance.json ships with the model)
  4. 4.Calibrated on orchestration / tool-calling prompts matching base model training distribution (ToolScale + GeneralThought-430K)

How to use

python
from awq import AutoAWQForCausalLM
from transformers import AutoTokenizer
import torch

model_id = "amaimedia/Qwen3-8B-Nemotron-Orchestrator-NOESIS-AWQ-INT4"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoAWQForCausalLM.from_quantized(
    model_id,
    device_map={"": 0},
    torch_dtype=torch.float16,
    fuse_layers=False,
)

prompt = "Plan a multi-step task: search for recent AWQ papers, then summarize."
inputs = tokenizer(prompt, return_tensors="pt").to("cuda")
out = model.generate(**inputs, max_new_tokens=256, do_sample=False)
print(tokenizer.decode(out[0], skip_special_tokens=True))

NOESIS context

In NOESIS this model serves as the English orchestration teacher for Specialist M9-ORCH-4B during knowledge distillation. It is loaded sequentially (per the NOESIS swapping protocol) onto the RTX 3060, producing top-K=512 logits at temperature=4.0, which are then aggregated in build_ensemble_labels.py with proposed weight w=0.22 on the orchestration data shard.

NOESIS specialists overview:

IDRoleSize
M1ASR (150+ langs)10B/3B
M2Dubbing LM (30 langs full)10B/3B
M3TTS + voice cloning10B/3B
M4Chat + creative writing10B/3B
M5Code + math10B/3B
M6Deep research (1M ctx)10B/3B
M7Prompt engineering4B/0.8B
M8Quality control (PRM)4B/0.8B
M9Orchestrator + routing4B/0.8B

Acknowledgements & citation

Base model: ToolOrchestra by NVIDIA & University of Hong Kong.

bibtex
@misc{toolorchestra,
  title  = {ToolOrchestra: Elevating Intelligence via Efficient Model and Tool Orchestration},
  author = {Hongjin Su and Shizhe Diao and Ximing Lu and others},
  year   = {2025},
  eprint = {2511.21689},
  archivePrefix = {arXiv}
}

Quantization & NOESIS integration:

bibtex
@misc{noesis_v14,
  title  = {NOESIS v14.6: DHCF-FNO Multilingual Dubbing Platform},
  author = {Bolotnikov, Ilia},
  year   = {2026},
  publisher = {AMAImedia},
  url    = {https://amaimedia.com}
}