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 Research2d ago

Advancing Matrix Multiplication Complexity: A New Bound via AlphaEvolve

Researchers have achieved a new upper bound for the matrix multiplication exponent, ω < 2.371177, by combining reformulated optimization techniques with AlphaEvolve. This advancement refines the long-standing combination loss analysis method, pushing the theoretical limits of computational complexity.

BY PNEUMETRON1 MIN READ
Read more
AI Research2d ago

PixRestore: A VAE-Free Approach to Unified Image Restoration

PixRestore introduces a pixel-space Diffusion Transformer for unified image restoration, bypassing the limitations of VAE-based latent diffusion models. By training from scratch and utilizing flow matching, the model achieves high-fidelity results with significantly reduced parameter counts and single-step inference.

BY PNEUMETRON1 MIN READ
Read more
AI Research2d ago

aDSL: Agentic 3D Creation via Joint Agent-Program Design

Researchers have introduced aDSL, a domain-specific language designed to align LLM reasoning capabilities with 3D geometric constraints. By replacing absolute coordinate generation with relational operators and a multi-agent feedback loop, the system significantly improves the reliability of programmatic 3D asset generation.

BY PNEUMETRON1 MIN READ
Read more
AI Research2d ago

GS-Voxel: Solving the Structured Latent Problem for Large-Scale 3DGS

GS-Voxel introduces a fitting-free framework that converts irregular 3D Gaussian Splatting reconstructions into structured, sparse voxels. This enables scalable, image-conditioned generation of large-scale 3D scenes without the overhead of per-scene optimization.

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 →