You can get to know us better through the following channels👇
Seed-OSS Open-Source Models
This model card is dedicated to the
Seed-OSS-36B-Instruct
model.
News
[2025/08/20]🔥We release
Seed-OSS-36B-Base
(both with and without synthetic data versions) and
Seed-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.
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.
Seed-OSS-36B
Parameters
36B
Attention
GQA
Activation Function
SwiGLU
Number of Layers
64
Number of QKV Heads
80 / 8 / 8
Head Size
128
Hidden Size
5120
Vocabulary Size
155K
Context Length
512K
RoPE Base Frequency
1e7
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)".
-
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.
- Generation configs for Seed-OSS-36B-Instruct: temperature=1.1, top_p=0.95. Specifically, for Taubench, temperature=1, top_p=0.7.
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.
<seed:think>
Got it, let's try to solve this problem step by step. The problem says ... ...
<seed:cot_budget_reflect>I have used 129 tokens, and there are 383 tokens remaining for use.</seed:cot_budget_reflect>
Using the power rule, ... ...
<seed:cot_budget_reflect>I have used 258 tokens, and there are 254 tokens remaining for use.</seed:cot_budget_reflect>
Alternatively, remember that ... ...
<seed:cot_budget_reflect>I have used 393 tokens, and there are 119 tokens remaining for use.</seed:cot_budget_reflect>
Because if ... ...
<seed:cot_budget_reflect>I have exhausted my token budget, and now I will start answering the question.</seed:cot_budget_reflect>
</seed:think>
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.
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
Founded in 2023, ByteDance Seed Team is dedicated to crafting the industry's most advanced AI foundation models. The team aspires to become a world-class research team and make significant contributions to the advancement of science and society.
Runs of cyankiwi Seed-OSS-36B-Instruct-AWQ-4bit on huggingface.co
850
Total runs
4
24-hour runs
25
3-day runs
24
7-day runs
764
30-day runs
More Information About Seed-OSS-36B-Instruct-AWQ-4bit huggingface.co Model
More Seed-OSS-36B-Instruct-AWQ-4bit license Visit here:
Seed-OSS-36B-Instruct-AWQ-4bit huggingface.co is an AI model on huggingface.co that provides Seed-OSS-36B-Instruct-AWQ-4bit's model effect (), which can be used instantly with this cyankiwi Seed-OSS-36B-Instruct-AWQ-4bit model. huggingface.co supports a free trial of the Seed-OSS-36B-Instruct-AWQ-4bit model, and also provides paid use of the Seed-OSS-36B-Instruct-AWQ-4bit. Support call Seed-OSS-36B-Instruct-AWQ-4bit model through api, including Node.js, Python, http.
Seed-OSS-36B-Instruct-AWQ-4bit huggingface.co is an online trial and call api platform, which integrates Seed-OSS-36B-Instruct-AWQ-4bit's modeling effects, including api services, and provides a free online trial of Seed-OSS-36B-Instruct-AWQ-4bit, you can try Seed-OSS-36B-Instruct-AWQ-4bit online for free by clicking the link below.
cyankiwi Seed-OSS-36B-Instruct-AWQ-4bit online free url in huggingface.co:
Seed-OSS-36B-Instruct-AWQ-4bit is an open source model from GitHub that offers a free installation service, and any user can find Seed-OSS-36B-Instruct-AWQ-4bit on GitHub to install. At the same time, huggingface.co provides the effect of Seed-OSS-36B-Instruct-AWQ-4bit install, users can directly use Seed-OSS-36B-Instruct-AWQ-4bit installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
Seed-OSS-36B-Instruct-AWQ-4bit install url in huggingface.co: