ByteDance-Seed/Seed-OSS-36B-Base-woSyn
Captured source
source ↗You can get to know us better through the following channels👇
Seed-OSS Open-Source Models
> [!NOTE] > This model card is dedicated to the Seed-OSS-36B-Base-woSyn model.
News
- [2025/08/20]🔥We release
Seed-OSS-36B-Base(both with and without synthetic data versions) andSeed-OSS-36B-Instruct.
Introduction
Seed-OSS is a series of open-source large language models developed by ByteDance's Seed Team, designed for powerful long-context, reasoning, agent and general capabilities, and versatile developer-friendly features. Although trained with only 12T tokens, Seed-OSS achieves excellent performance on several popular open benchmarks.
We release this series of models to the open-source community under the Apache-2.0 license.
> [!NOTE] > Seed-OSS is primarily optimized for international (i18n) use cases.
Key Features
- Flexible Control of Thinking Budget: Allowing users to flexibly adjust the reasoning length as needed. This capability of dynamically controlling the reasoning length enhances inference efficiency in practical application scenarios.
- Enhanced Reasoning Capability: Specifically optimized for reasoning tasks while maintaining balanced and excellent general capabilities.
- Agentic Intelligence: Performs exceptionally well in agentic tasks such as tool-using and issue resolving.
- Research-Friendly: Given that the inclusion of synthetic instruction data in pre-training may affect the post-training research, we released pre-trained models both with and without instruction data, providing the research community with more diverse options.
- Native Long Context: Trained with up-to-512K long context natively.
Model Summary
Seed-OSS adopts the popular causal language model architecture with RoPE, GQA attention, RMSNorm and SwiGLU activation.
Evaluation Results
Seed-OSS-36B-Base
Incorporating synthetic instruction data into pretraining leads to improved performance on most benchmarks. We adopt the version augmented with synthetic instruction data (i.e., *w/ syn.*) as Seed-OSS-36B-Base. We also release Seed-OSS-36B-Base-woSyn trained without such data (i.e., *w/o syn.*), offering the community a high-performance foundation model unaffected by synthetic instruction data.
- Bold denotes open-source SOTA.
- "*" indicates that the results in this column are presented in the format of "reproduced_results (reported_results_if_any)".
Seed-OSS-36B-Instruct
- Bold denotes open-source SOTA. Underlined indicates the second place in the open-source model.
- "*" indicates that the results in this column are presented in the format of "reproduced_results (reported_results_if_any)". Some results have been omitted due to the failure of the evaluation run.
- The results of Gemma3-27B are sourced directly from its technical report.
- The results of ArcAGI-V2 were measured on the official evaluation set, which was not involved in the training process.
- Generation configs for Seed-OSS-36B-Instruct: temperature=1.1, top_p=0.95. Specifically, for Taubench, temperature=1, top_p=0.7.
> [!NOTE] > We recommend sampling with temperature=1.1 and top_p=0.95.
Thinking Budget
Users can flexibly specify the model's thinking budget. The figure below shows the performance curves across different tasks as the thinking budget varies. For simpler tasks (such as IFEval), the model's chain of thought (CoT) is shorter, and the score exhibits fluctuations as the thinking budget increases. For more challenging tasks (such as AIME and LiveCodeBench), the model's CoT is longer, and the score improves with an increase in the thinking budget.

Here is an example with a thinking budget set to 512: during the reasoning process, the model periodically triggers self-reflection to estimate the consumed and remaining budget, and delivers the final response once the budget is exhausted or the reasoning concludes.
Got it, let's try to solve this problem step by step. The problem says ... ... I have used 129 tokens, and there are 383 tokens remaining for use. Using the power rule, ... ... I have used 258 tokens, and there are 254 tokens remaining for use. Alternatively, remember that ... ... I have used 393 tokens, and there are 119 tokens remaining for use. Because if ... ... I have exhausted my token budget, and now I will start answering the question. To solve the problem, we start by using the properties of logarithms to simplify the given equations: (full answer omitted).
If no thinking budget is set (default mode), Seed-OSS will initiate thinking with unlimited length. If a thinking budget is specified, users are advised to prioritize values that are integer multiples of 512 (e.g., 512, 1K, 2K, 4K, 8K, or 16K), as the model has been extensively trained on these intervals. Models are instructed to output a direct response when the thinking budget is 0, and we recommend setting any budget below 512 to this value.
Quick Start
pip install git+https://github.com/huggingface/transformers.git@56d68c6706ee052b445e1e476056ed92ac5eb383
from transformers import AutoModelForCausalLM, AutoTokenizer
import os
import re
model_name_or_path = "ByteDance-Seed/Seed-OSS-36B-Instruct"
tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
model = AutoModelForCausalLM.from_pretrained(model_name_or_path, device_map="auto") # You may want to use bfloat16 and/or move to GPU here
messages = [
{"role": "user", "content": "How to make pasta?"},
]
tokenized_chat = tokenizer.apply_chat_template(
messages,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt",
thinking_budget=512 # control the thinking budget
)
outputs = model.generate(tokenized_chat.to(model.device), max_new_tokens=2048)
output_text = tokenizer.decode(outputs[0])Inference
Download Model
Download Seed-OSS checkpoint to ./Seed-OSS-36B-Instruct
Transformers
The generate.py script provides a simple interface for model inference with configurable options.
Basic Usage
cd inference python3 generate.py --model_path /path/to/model
Key Parameters
| Parameter | Description | |-----------|-------------| | --model_path | Path to the pretrained model directory (required) | | --prompts | Input prompts (default: sample cooking/code questions) | |…
Excerpt shown — open the source for the full document.
Notability
notability 3.0/10Low traction, routine model release