Pneumetron.
  • News
  • Tools
  • Infrastructure
  • Get the Workflow
Read News
Pneumetron.Empero AI Releases Qwythos-9B-v2: Addressing Looping and Enhancing Robustness in a 1M-Token LLM
Share
Skip to article content
  1. Home
  2. ›
  3. News
  4. ›
  5. ai research
  6. ›
  7. Empero AI Releases Qwythos-9B-v2: Addressing Looping and Enhancing Robustness in a 1M-Token LLM
ai research·July 14, 2026·Updated Jul 19

Empero AI Releases Qwythos-9B-v2: Addressing Looping and Enhancing Robustness in a 1M-Token LLM

BY PNEUMETRON|5 MIN READ · 871 WORDS5 MIN READ|13 views
Tools
Share

In This Article

  • What Changed
  • Technical Details
  • Benchmark Analysis
  • Developer Implications
  • Bottom Line

Empero AI has released Qwythos-9B-v2, an updated version of their 9B parameter language model built on the Qwen3.5 stack. This iteration primarily focuses on eliminating repetitive looping behavior and restoring the native multi-token-prediction (MTP) head, while preserving its 1M-token context and strong reasoning capabilities. The model remains intentionally uncensored for research and specialized technical applications.

What Changed

Empero AI has launched Qwythos-9B-v2, a significant update to its Qwythos-9B large language model. The primary objective of this release was to address and eliminate the looping and degeneration behavior observed in the previous version, particularly under greedy or low-temperature decoding. This issue, which previously affected 6.7% of greedy generations, has been reduced to 0% in v2. The update also restores the native multi-token-prediction (MTP) module, which was missing in the prior export, ensuring compatibility with speculative decoding setups.

Crucially, these improvements were implemented without compromising the model's core capabilities. Qwythos-9B-v2 retains the deep chain-of-thought reasoning, the 1M-token context window (enabled by YaRN rope-scaling), and its intentionally uncensored research posture. Another refinement includes a cleaner identity management, where the model now introduces itself only when explicitly asked, rather than prefacing unrelated answers with its identity.

Technical Details

The core of the looping fix in Qwythos-9B-v2 lies in a technique called Final-Token Preference Optimization (FTPO). This method identifies the specific token that initiates a repetition loop and then gently trains the model to favor coherent alternatives at that precise position. This targeted approach ensures that the rest of the model's knowledge and reasoning capabilities remain unaffected.

The training procedure involved fine-tuning the base Qwythos (Qwythos-9B-Claude-Mythos-5-1M) using approximately 2,000 preference tuples. These tuples were automatically mined by eliciting looping behavior at low temperatures and extracting the rejected loop token versus the model's own coherent top-k alternatives at each loop-start position. The fine-tuning utilized LoRA with parameters r=256, α=128, lr=1.5e-5 for one epoch, with early stopping based on chosen_win ≥ 0.30. This 'light touch' training targeted all attention, MLP projections, and the lm_head.

The model is built on the Qwen3.5-9B architecture, featuring a hybrid design (3:1 Gated-DeltaNet linear-attention : full attention) and is multimodal-capable, though its practical usage is text-only. It utilizes bfloat16 parameters and safetensors. The 1,048,576-token context is achieved through YaRN rope-scaling with a factor of 4, extending the native 262,144-token window. The tokenizer and chat template are Qwen3.5 native (ChatML-style).

Benchmark Analysis

Empero AI conducted internal evaluations to confirm that the hygiene upgrades did not lead to a capability regression. The benchmarks were measured using an internal harness with generative chain-of-thought, greedy/pass@1 decoding, and an independent LLM grader for quality metrics. Sample sizes included MMLU/ARC/GSM8K n=500, GPQA-diamond n=198, and HumanEval n=164.

BenchmarkQwen3.5-9B (base)Qwythos-9BQwythos-9B-v2
MMLU (CoT)80.683.883.8
ARC-Challenge95.695.096.4
GPQA-diamond32.852.049.0
GSM8K80.692.293.6
HumanEval81.779.977.4
Looping (greedy)2.76.70.0

As the table indicates, Qwythos-9B-v2 maintains or slightly improves upon the reasoning and knowledge benchmarks compared to its predecessor and the base Qwen3.5-9B model. For instance, MMLU (CoT) remains at 83.8%, ARC-Challenge improved to 96.4%, and GSM8K reached 93.6%. The most significant improvement is the elimination of the greedy looping rate, which dropped from 6.7% in Qwythos-9B to 0.0% in v2.

It is noted that HumanEval (pass@1) scores for v2 are 77.4%, a slight decrease compared to the raw Qwen3.5-9B base (81.7%) and Qwythos-9B (79.9%). This is acknowledged as a small, known cost associated with the reasoning/looping-fix fine-tuning. The model's MMLU score is notably higher with Chain-of-Thought (CoT) reasoning (83.8%) compared to a 5-shot loglikelihood setup (69.6%), underscoring its strength as a reasoning model.

Developer Implications

For developers, Qwythos-9B-v2 offers a more robust and reliable text generation experience. The elimination of looping behavior means that repetition_penalty is no longer a critical parameter for maintaining coherence, allowing for more straightforward deployment and potentially better performance with greedy or low-temperature decoding. This reduces the need for heuristic tuning of generation parameters.

The restoration of the native MTP head ensures that the model's configuration and weights are in agreement, which is beneficial for developers implementing speculative decoding. While the MTP head was not co-trained with the fine-tuned weights, its presence allows for better integration into advanced decoding pipelines.

With a 1M-token context, Qwythos-9B-v2 is well-suited for applications requiring extensive context understanding, such as long-form content generation, complex document analysis, and detailed code review. The model's uncensored nature makes it particularly valuable for specialized research, cybersecurity, red-teaming, and scientific domains like biology, chemistry, pharmacology, and clinical work, where unconstrained inquiry is often necessary. Developers must, however, deploy it responsibly and in compliance with applicable laws.

Usage with the transformers library is straightforward, as demonstrated by the provided Python snippet. For serving, vLLM is supported out-of-the-box, with a recommendation to use --limit-mm-per-prompt '{"image":0,"video":0}' to streamline startup given its text-only practical application.

Bottom Line

Qwythos-9B-v2 represents a focused and impactful update from Empero AI. By leveraging Final-Token Preference Optimization, the model effectively resolves critical looping issues without sacrificing its strong reasoning capabilities or its extensive 1M-token context. While there's a minor trade-off in HumanEval scores, the overall enhancement in generation robustness and the restoration of the MTP head make Qwythos-9B-v2 a more stable and developer-friendly option for applications demanding deep reasoning, long context, and an uncensored research stance. This release solidifies its position as a valuable tool for technical and scientific domains.

Pneumetron

#AI#Machine Learning#LLM#Qwythos-9B-v2#Empero AI#Text Generation#Fine-tuning#FTPO#Qwen3.5#1M-token context#Uncensored AI#Reasoning Models
PR
WRITTEN BY•SYSTEM AGENT

PNEUMETRON EDITORIAL TEAM

Rajini Ravindra holds an M.A. in History from Mysore University (KSOU). Currently a homemaker, she spends her free time exploring AI and automation, and oversees editorial review for Pneumetron.

PROCESS:Pneumetron's pipeline pairs AI-assisted drafting with human editorial review before publishing — our goal is to make staying informed easier for students and professionals, not to replace real reporting.

Source Material:hf_model ↗
Source Attribution

This article was generated by Pneumetron's autonomous intelligence pipeline from verified source materials.

Open Source Document at hf_model ↗
Share this article
Share
Stay Informed

Never miss a signal.

Subscribe to the Pneumetron Intelligence Digest — automated briefings covering AI, science, technology, and world events.

← Previous
AdvancedMathBench: A New Benchmark for LLM Advanced Mathematical Reasoning
Next →
Metacognition in LLMs: A Comprehensive Review

More from ai research

View All →
AI Research1d ago

BDH-CQ: Breaking the ARC-AGI Cost-Accuracy Frontier with Latent Reasoning

A new model, BDH-CQ, introduces recurrent latent reasoning to solve complex tasks without verbalizing intermediate steps. By achieving 29.5% pass@2 on ARC-AGI-1 at a cost of $0.0007 per task, it establishes a new efficiency benchmark for reasoning models.

BY PNEUMETRON1 MIN READ
Read more
AI Research4d ago

Macaron-V1: Architecting Experiential Intelligence with Mixture-of-LoRA

Macaron-V1 introduces a new framework for experiential intelligence, utilizing a Mixture-of-LoRA architecture to enable post-deployment learning. The system combines recursive self-improvement loops with specialized adapters to maintain performance across diverse agentic tasks.

BY PNEUMETRON1 MIN READ
Read more
AI Research4d ago

Beyond Simple Patches: SWE-Bench ProMax Targets the Complexity of Code Refactoring

SWE-Bench ProMax introduces a rigorous, expert-curated benchmark designed to test AI coding agents on complex, multi-file refactoring tasks. By filtering out flawed test suites and focusing on large-scale changes, it addresses the saturation and quality issues plaguing existing software engineering benchmarks.

BY PNEUMETRON1 MIN READ
Read more
AI Research4d ago

CoinRAG: Optimizing Long-Context RAG via Fine-Grained KV Cache Reuse

CoinRAG introduces a novel approach to Retrieval-Augmented Generation by reusing fine-grained, semantically relevant 'nugget' caches instead of full chunks. This method improves efficiency and accuracy by reducing noise and optimizing the Pareto frontier for prefill latency.

BY PNEUMETRON1 MIN READ
Read more
Sponsorship Slot · 728 × 90
13 views

In This Article

  • What Changed
  • Technical Details
  • Benchmark Analysis
  • Developer Implications
  • Bottom Line

Most Read

01
Entertainment·Jul 23
Royal Return: Anne Hathaway Confirms Breakthrough for 'The Princess Diaries 3'
02
AI Research·Jul 13
Proactive Memory Agents Combat Behavioral State Decay in Long-Horizon AI Tasks
03
AI Research·Jul 21
FlowMimic: Streamlining Video Editing via Pixel-Pair Temporal Warped Flow Fields
04
AI Research·Jul 17
Unsloth Releases Qwen3.6-27B-NVFP4: Enhanced Throughput and Agentic Coding for Developers
05
AI Research·Jul 19
Moonshot AI's Kimi CLI Evolves into Kimi Code CLI: A Next-Gen Terminal AI Agent
Daily Digest

Get top AI & tech signals delivered to your inbox every morning.

Subscribe →
Sponsorship Slot300 × 250
Follow Signals
X / TWITTERXLINKEDINLIINSTAGRAMIGYOUTUBEYTTELEGRAMTG
News Categories
TechnologyAI ResearchPoliticsSportsHealthBusinessScienceEntertainmentWorld
Pneumetron.

© 2026 Pneumetron. All systems automated.

  • About
  • Tools
  • Privacy
  • Terms
  • Contact
  • Advertise
  • Automate your own news site →