SAVRN
Search Contact SAVRN

Open-weight model · Image and text to text

RynnBrain-2B

by DAMO Academy Alibaba-DAMO-Academy/RynnBrain-2B

[2026.02.02] Release RynnBrain family weights and inference code. - [2026.02.02] Add cookbooks for cognition, localization, reasoning, and planning.

Parameters2.4B
Context262,144
Weights4.9 GB
Licenseapache-2.0
AccessOpen weights
Monthly Downloads3.7k

Runs On

What it takes to serve RynnBrain-2B (2.4B parameters): the memory its weights need at each precision, and the cheapest way to rent enough data-center GPUs to hold them.

PrecisionWeightsMemory neededCheapest setupPer hourAlso fits
16-bit 4.9 GB 5.9 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
8-bit 2.4 GB 2.9 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00
4-bit 1.2 GB 1.5 GB 1x MI300X (192 GB)
Vultr
$1.85 1x H100 $1.99 · 1x MI325X $2.00

Memory is the weights at that precision plus 20% for the runtime and a short context; a long context needs more. Prices are the lowest on-demand hourly rates in the SAVRN Index, read Sep 18, 2026.

Model Card

By DAMO Academy, published under apache-2.0, revision ad71236d013a.

[2026.02.02] Release RynnBrain family weights and inference code. - [2026.02.02] Add cookbooks for cognition, localization, reasoning, and planning. RynnBrain aims to serve as a physics-aware embodied brain: it observes egocentric scenes, grounds language to physical space and time, and supports downstream robotic systems with reliable localization and planning outputs. - Comprehensive egocentric understanding Strong spatial comprehension and egocentric cognition across embodied QA, counting, OCR, and fine-grained video understanding. - Diverse spatiotemporal localization Locates objects, target areas, and predicts trajectories across long episodic context, enabling global spatial…

Read DAMO Academy's full model card

RynnBrain: Open Embodied Foundation Models

If you like our project, please give us a star onGithub for the latest update.

--- ## News - **[2026.02.02]** Release **RynnBrain family** weights and inference code. - **[2026.02.02]** Add cookbooks for cognition, localization, reasoning, and planning. ## Introduction RynnBrain aims to serve as a **physics-aware embodied brain**: it observes egocentric scenes, grounds language to physical space and time, and supports downstream robotic systems with reliable localization and planning outputs. ### Key Highlights - **Comprehensive egocentric understanding** Strong spatial comprehension and egocentric cognition across embodied QA, counting, OCR, and fine-grained video understanding. - **Diverse spatiotemporal localization** Locates objects, target areas, and predicts trajectories across long episodic context, enabling global spatial awareness. - **Physical-space grounded reasoning (RynnBrain family)** The broader RynnBrain family includes “Thinking” variants that interleave textual reasoning with spatial grounding to anchor reasoning in reality. - **Physics-aware precise planning (RynnBrain family)** Integrates localized affordances/areas/objects into planning outputs to provide downstream VLA models with precise instructions. ## Model Zoo | Model | Base Model | Huggingface | Modelscope | |:--------------- |:------------------- |:---------: |:--------: | | RynnBrain-2B (**This Checkpoint**) | Qwen3-VL-2B-Instruct | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-2B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-2B) | | RynnBrain-8B | Qwen3-VL-8B-Instruct | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-8B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-8B) | | RynnBrain-4B | Qwen3-VL-4B-Instruct | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-4B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-4B) | | RynnBrain-30B-A3B | Qwen3-VL-30B-A3B-Instruct | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-30B-A3B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-30B-A3B) | | RynnBrain‑CoP-8B | RynnBrain-8B | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-CoP-8B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-CoP-8B) | | RynnBrain‑Plan-8B | RynnBrain-8B | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-Plan-8B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-Plan-8B) | | RynnBrain‑Plan-30B-A3B | RynnBrain-30B-A3B | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-Plan-30B-A3B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-Plan-30B-A3B) | | RynnBrain‑Nav-8B | RynnBrain-8B | [Link](https://huggingface.co/Alibaba-DAMO-Academy/RynnBrain-Nav-8B) | [Link](https://www.modelscope.cn/models/DAMO_Academy/RynnBrain-Nav-8B) | ## Main Results ## Quick Start Minimal dependencies:
pip install transformers==4.57.1
Run text generation:
from transformers import AutoModelForImageTextToText

model = AutoModelForImageTextToText.from_pretrained("")
...
## Cookbooks Checkout the [cookbooks](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks) that showcase RynnBrain's capabilities in cognition, localization, reasoning, and planning. | Category | Cookbook name | Description | |----------------------|--------------------------------------------------------------------------------------------------|-------------| | Cognition | [1_spatial_understanding.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/1_spatial_understanding.ipynb) | Shows the ability of model for spaital understanding in the video scene. | | Cognition | [2_object_understanding.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/2_object_understanding.ipynb) | Shows how the model understands object categories, attributes, and relations and counting ability. | | Cognition | [3_ocr.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/3_ocr.ipynb) | Examples of optical character recognition and text understanding in videos. | | Location | [4_object_location.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/4_object_location.ipynb) | Locates specific objects with bounding boxes in an image or video based on instructions. | | Location | [5_area_location.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/5_area_location.ipynb) | Identifies and marks specified regions by points in an image or video. | | Location | [6_affordance_location.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/6_affordance_location.ipynb) | Finds areas or objects with specific affordances in an image of video. | | Location | [7_trajectory_location.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/7_trajectory_location.ipynb) | Infers and annotates trajectories or motion paths in an image or video. | | Location | [8_grasp_pose.ipynb](https://github.com/alibaba-damo-academy/RynnBrain/cookbooks/8_grasp_pose.ipynb) | Present the model's abiltiy to predict robotic grasp poses from images. | ## Citation If you find RynnBrain useful for your research and applications, please cite using this BibTeX:
@article{damo2026rynnbrain,
  title={RynnBrain: Open Embodied Foundation Models},
  author={Ronghao Dang, Jiayan Guo, Bohan Hou, Sicong Leng, Kehan Li, Xin Li, Jiangpin Liu, Yunxuan Mao, Zhikai Wang, Yuqian Yuan, Minghao Zhu, Xiao Lin, Yang Bai, Qian Jiang, Yaxi Zhao, Minghua Zeng, Junlong Gao, Yuming Jiang, Jun Cen, Siteng Huang, Liuyi Wang, Wenqiao Zhang, Chengju Liu, Jianfei Yang, Shijian Lu, Deli Zhao},
  journal={arXiv preprint arXiv:2602.14979v1},
  year={2026},
  url = {https://arxiv.org/abs/2602.14979v1}
}

Configuration

Architecture
Qwen3VLForConditionalGeneration
Context length (tokens)
262,144
Layers
28
Hidden size
2,048
Feed-forward size
6,144
Attention heads
16
Key/value heads
8
Head dimension
128
Vocabulary size
151,936
RoPE base
5,000,000
Model type
qwen3_vl

Identity and Version

Repository
Alibaba-DAMO-Academy/RynnBrain-2B
Publisher
DAMO Academy
Task
Image and text to text
Modality
Image and text
Library
transformers
Parameters
2.4B parameters
Languages
en, zh
Revision
ad71236d013ae5618833fded73a32569045a8e9e
First published
2026-01-31
Last updated
2026-04-15

Files and Weights

14 files, 4.9 GB in total. The weights are 1 file totalling 4.9 GB in safetensors.

Weights1 file · 4.9 GB
Configuration6 files · 4.7 KB
Tokenizer4 files · 15.9 MB
Documentation1 file · 7.4 KB
Other1 file · 5.3 KB
Repository1 file · 1.6 KB
Every file
FileTypeSizeSHA-256
model.safetensorsWeights4.9 GB ac4ae115b483
added_tokens.jsonConfiguration707 B
config.jsonConfiguration1.6 KB
generation_config.jsonConfiguration199 B
preprocessor_config.jsonConfiguration782 B
special_tokens_map.jsonConfiguration613 B
video_preprocessor_config.jsonConfiguration817 B
README.mdDocumentation7.4 KB
chat_template.jinjaOther5.3 KB
.gitattributesRepository1.6 KB
merges.txtTokenizer1.7 MB
tokenizer.jsonTokenizer11.4 MB aeb13307a71a
tokenizer_config.jsonTokenizer5.4 KB
vocab.jsonTokenizer2.8 MB

License and Download

License
apache-2.0
Access
Open weights, no gate
Download size
4.9 GB
Download from DAMO Academy

Released by DAMO Academy through its official repository on Hugging Face. Read the license.

Built From

  • Described by arXiv:2602.14979

Memory Requirements

PrecisionWeights in memory
As published4.9 GB
16-bit4.9 GB
8-bit2.4 GB
4-bit1.2 GB

Weights only, from the published parameter count; the key-value cache and runtime add to this.

Questions About RynnBrain-2B

How much GPU memory does RynnBrain-2B need?

About 5.9 GB at 16-bit and 1.5 GB at 4-bit: the weights (2.4B parameters) plus a working margin. A long context needs more.

What is the cheapest GPU to run RynnBrain-2B on?

At 16-bit, 1x MI300X from $1.85 an hour; at 4-bit, 1x MI300X from $1.85 an hour, at the lowest on-demand prices the SAVRN Index lists.

Can I use RynnBrain-2B commercially?

Yes. RynnBrain-2B is released under Apache License 2.0. The Apache License 2.0 is a permissive open-source license. It permits commercial use, modification and redistribution. It requires keeping the license and copyright notices and any NOTICE file, stating significant changes, and it includes an express patent grant from contributors.

What is RynnBrain-2B's context length?

262,144 tokens, from the maximum position embeddings in its published configuration.

Similar Models

Model · Image and text to text

Cosmos-Reason2-2B

NVIDIA

NVIDIA Cosmos Reason 2 is an open, customizable, 2B-parameter reasoning vision language model (VLM) for physical AI and robotics that enables robots and vision AI agents to reason like humans, using prior knowledge, physics understanding and common sense to understand and act in the real world. This model understands space, time, and fundamental physics, and can serve as a planning model to reason what steps an embodied agent might take next. New features with Cosmos Reason 2: Enhanced physical AI reasoning with improved spatio-temporal understanding and timestamp precision. Supports object detection with 2D/3D point localization and bounding box coordinates with reasoning explanations and…

Access requested at publisher other 2.4B parameters cosmos

Model · Image and text to text

ProcVLM-2B

Youhe Feng

ProcVLM-2B is a procedure-grounded vision-language model for estimating progress rewards from robot manipulation observations. Given a task description and a recent window of video frames, the model reasons about the remaining atomic actions and predicts the current task completion percentage. ProcVLM-2B is designed for research on robot learning, progress reward modeling, embodied evaluation, and procedure-aware video understanding. Typical use cases include: - estimating task completion progress from robot videos; - producing dense progress rewards from sparse demonstrations; - adapting progress prediction to a new environment with one-shot LoRA fine-tuning. This model is not intended to…

Open weights cc-by-4.0 2.4B parameters 262,144 tokens transformers

Model · Image and text to text

Qwen3.5-2B

Qwen

Over recent months, we have intensified our focus on developing foundation models that deliver exceptional utility and performance. Qwen3.5 represents a significant leap forward, integrating breakthroughs in multimodal learning, architectural efficiency, reinforcement learning scale, and global accessibility to empower developers and enterprises with unprecedented capability and efficiency. For more details, please refer to our blog post Qwen3.5. WMT24++: a harder subset of WMT24 after difficulty labeling and rebalancing; we report the averaged scores on 55 languages using XCOMET-XXL. Empty cells (--) indicate scores not yet available or not applicable. Scores of Qwen3.5 models are reported…

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Image and text to text

Rax-4.5

RaxCore

Over recent months, we have intensified our focus on developing foundation models that deliver exceptional utility and performance. Rax 4.5 represents a significant leap forward, integrating breakthroughs in multimodal learning, architectural efficiency, reinforcement learning scale, and global accessibility to empower developers and enterprises with unprecedented capability and efficiency. Rax 4.5 features the following enhancement: For more details, please refer to our blog post Rax 4.5. WMT24++: a harder subset of WMT24 after difficulty labeling and rebalancing; we report the averaged scores on 55 languages using XCOMET-XXL. Empty cells (--) indicate scores not yet available or not…

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Image and text to text

Qwen3.5-2B-auto-optimized

Islam Assanov

This is Qwen3.5-2B auto-optimized by Claude Fable for fast single-request text generation. Fable built and tuned the included qwen35fast inference engine while keeping Qwen's original BF16 weights unchanged. Across 12 development workloads, the Fable engine delivered 14× the decode speed of Transformers eager and 1.02× the speed of vLLM with MTP (geometric means). On 12 held-out workloads, it reached 528–866 tokens/s and 1.01× vLLM with MTP. Use Python 3.12 and an NVIDIA CUDA GPU. Download the model and install its dependencies: The original checkpoint also works with Transformers for Qwen's standard text and vision-language workflows; the speed figures above use qwen35fast. - Captured the…

Open weights apache-2.0 2.3B parameters 262,144 tokens transformers

Model · Image and text to text

Qwen2-VL-2B-Instruct

Qwen

We're excited to unveil Qwen2-VL, the latest iteration of our Qwen-VL model, representing nearly a year of innovation. SoTA understanding of images of various resolution & ratio: Qwen2-VL achieves state-of-the-art performance on visual understanding benchmarks, including MathVista, DocVQA, RealWorldQA, MTVQA, etc. Understanding videos of 20min+: Qwen2-VL can understand videos over 20 minutes for high-quality video-based question answering, dialog, content creation, etc. Agent that can operate your mobiles, robots, etc.: with the abilities of complex reasoning and decision making, Qwen2-VL can be integrated with devices like mobile phones, robots, etc., for automatic operation based on…

Open weights apache-2.0 2.2B parameters 32,768 tokens transformers