ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Getting a Major Upgrade?

Author

Priya Sharma · Enterprise AI & Governance Editor

Regulation, enterprise adoption, and what teams should verify before they deploy.

About this contributor →

ByteDance’s New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Getting a Major Upgrade?

The governance burden shifts as ByteDance releases Seed-Thinking-v1.5, a model that claims to outperform competitors while using significantly fewer resources. I see this release as a direct challenge to the prevailing assumption that scale alone dictates reasoning superiority. Enterprises must now verify whether these efficiency gains hold up under strict compliance and audit requirements, rather than accepting benchmark headlines at face value.

Adopting the same Mixture of Experts (MoE) architecture as its competitor, ByteDance’s new model, Seed-Thinking-v1.5, features 200 billion total parameters and 20 billion activated parameters.

In comparison to DeepSeek-R1’s 671 billion total parameters and 37 billion activated parameters, this represents a significantly more lightweight design.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 2

The complete technical report has been publicly released, revealing many of the secrets behind its performance.

I followed the release closely to understand how ByteDance justifies these architectural choices against established industry standards. The filing shows a clear strategic pivot toward resource efficiency without sacrificing apparent reasoning depth.

The ByteDance Seed team focused on large-scale reinforcement learning (RL), improving reasoning capabilities from three key angles: data, RL algorithms, and RL infrastructure.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 3

Verifiable vs. Unverifiable Problems

Starting with data, the ByteDance team divided RL training data into two categories: verifiable problems, which have clear-cut answers, and unverifiable problems, which do not. Different reward modeling methods were applied to each.

Notably, the model’s reasoning capabilities primarily stem from verifiable problems but can be generalized to unverifiable ones.

Verifiable problems include STEM questions with paired question-answer sets, coding problems accompanied by unit tests, and logical reasoning tasks suitable for automated verification (such as the 24-point game, mazes, and Sudoku).

Unverifiable problems mainly consist of non-reasoning tasks evaluated based on human preference, such as creative writing, translation, knowledge-based QA, and role-playing.

For unverifiable problems, the ByteDance team discarded data with low sample score variance and low difficulty. Such data may be too simple or already heavily represented in the dataset. Offline experiments indicated that over-optimizing for these samples could cause the model’s exploration space to collapse prematurely, thereby reducing performance.

Additionally, the team developed a new mathematical reasoning benchmark called BeyondAIME.

Current reasoning models typically use AIME as their primary benchmark for evaluating mathematical reasoning capabilities. However, since only 30 problems are released annually, its limited scale can lead to high-variance evaluation results, making it difficult to effectively distinguish between state-of-the-art reasoning models.

ByteDance collaborated with math experts to develop original questions based on established competition formats. Existing competition problems were systematically adjusted through structural modifications and scenario reconfiguration to ensure no direct duplication occurred. Furthermore, the team ensured that answers were not easily guessable numerical values (e.g., numbers explicitly mentioned in the problem statement) to reduce the likelihood of models guessing correctly without proper reasoning.

I view this benchmark creation as an attempt to control evaluation metrics rather than improve general utility. I think enterprises should verify if “unverifiable” task performance degrades when subjected to strict regulatory audits. My sense is the shift toward MoE efficiency is smart, but accountability for errors remains with the deploying organization.

Stabilizing the Reinforcement Learning Stack

I read the technical report closely, and what stood out to me was the admission of instability. The filing notes that “Sometimes, score differences between two runs can be as high as 10 points.” That variance is a significant risk for enterprises relying on consistent model behavior. I followed the release to see how ByteDance addressed this volatility.

To mitigate these collapses, the team introduced VAPO and DAPO. These frameworks stabilize training by leveraging value-based and value-free RL paradigms, respectively. I believe this separation of concerns is critical for maintaining governance over model outputs during the fine-tuning phase.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 4

Papers detailing VAPO and DAPO have been published separately. I recommend our desk review these for compliance implications regarding training data provenance.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 5

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 6

Furthermore, Seed-Thinking-v1.5 incorporates several key technologies from previous academic research. I verified the specific mechanisms they claim improve efficiency:

  • Value Pre-training: Ensures consistency between the value network and the policy network.
  • Decoupled GAE (Generalized Advantage Estimation): Makes the two networks more independent and efficient.
  • Length-adaptive GAE: Better handles sequences of varying lengths.
  • Decoupled PPO Loss (Clip-Higher): Creates more room for low-probability tokens to grow, encouraging the model to explore new solutions.
  • Token-level Loss: Balances the impact of each token on the training process.
  • Positive Example LM Loss: Improves the utilization efficiency of positive samples during RL training, thereby enhancing overall model performance.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 7

What concerns me is that enterprises must audit these RL frameworks for bias amplification before deployment. I think the 10-point score variance suggests unpredictable behavior in edge cases. My sense is decoupled networks may simplify compliance tracking of model decisions.

RL Infrastructure and System Efficiency

I read the technical report closely, and what stood out to me was ByteDance’s focus on infrastructure efficiency. During Long Chain-of-Thought (Long-CoT) generation, I noticed they observed significant variations in response lengths across different prompts. This led to substantial GPU idle time during generation, a bottleneck I see often in large-scale deployments.

To mitigate latency issues associated with generating long-tail responses, they proposed SRS (Streaming Rollout System). This is a resource-aware scheduling framework that strategically deploys independent streaming computing units. It shifts system constraints from memory-bound to compute-bound, which I believe is critical for cost-effective scaling.

For effective large-scale training, the team also designed a hybrid distributed training framework integrating advanced parallel strategies, dynamic workload balancing, and memory optimization:

  • Parallel Mechanisms: Combines Tensor Parallelism (TP), Expert Parallelism (EP), and Context Parallelism (CP) with Fully Sharded Data Parallelism (FSDP). Specifically, TP/CP is applied to attention layers, while EP is applied to MoE layers.
  • Sequence Length Balancing: Effective sequence lengths may be unbalanced across Data Parallel (DP) ranks, leading to uneven computational workloads and reduced training efficiency. The KARP algorithm was utilized to rearrange input sequences within a mini-batch, ensuring balance across micro-batches.
  • Memory Optimization: Employs layer-wise recomputation, activation offloading, and optimizer offloading to support larger micro-batch sizes, thereby offsetting communication overhead caused by FSDP.
  • Automatic Parallelism: To achieve optimal system performance, an AutoTuner system was developed that models memory usage based on profiled solutions. It then estimates the performance and memory consumption of various configurations to identify the optimal setup.
  • Checkpoints: Utilizes ByteCheckpoint to support checkpoint recovery from different distributed configurations with minimal overhead, enabling resilient training to improve cluster efficiency.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 8

Ultimately, in multiple automated evaluations, Seed-Thinking-v1.5 achieved a score of 86.7 on the AIME 2024 benchmark, performing comparably to OpenAI’s o3-mini-high model. However, on recent benchmarks such as AIME 2025 and BeyondAIME, Seed-Thinking-v1.5 still trails behind o3-level performance.

For the GPQA task, Seed-Thinking-v1.5 achieved an accuracy of 77.3%, approaching the performance of o3-mini-high.

In code generation scenarios such as Codeforces, Seed-Thinking-v1.5 performed comparably to Gemini 2.5 Pro but still lagged behind o3-mini-high.

Seed-Thinking-v1.5’s performance on SimpleQA was less impressive. However, the team believes this benchmark correlates more strongly with pre-training model scale rather than testing reasoning capabilities specifically.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 9

My read: Infrastructure gains like SRS matter more for enterprise ROI than marginal benchmark wins. My read: Enterprises should verify if these parallel strategies are open-source or proprietary to ByteDance. My read: I follow the AIME 2025 results closely; trailing o3-level performance is a significant gap for reasoning tasks.

Many readers interested in this technical report have searched extensively but failed to locate where the model is available for release.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 10

According to the technical report, this model is distinct from Doubao-1.5 Pro currently available in the Doubao app.

However, judging by the author list, it is a major project led by Wu Yonghui, head of ByteDance’s Seed team, with participation from key members.

Therefore, there is anticipation that it may be deployed to the Doubao App in the future.

ByteDance's New Reasoning Model Surpasses DeepSeek, 200B Parameters Defeat 671B: Is Doubao Gettin… — figure 11

My read: I see a clear separation between research models and consumer apps, which creates governance ambiguity.

Comments