@SenseTime_AI: ๐ฆ๐ฒ๐ป๐๐ฒ๐ก๐ผ๐๐ฎ-๐ฉ๐ถ๐๐ถ๐ผ๐ป-7๐-๐ ๐ผ๐ง, ๐ณ๐๐น๐น๐ ๐ผ๐ฝ๐ฒ๐ป-๐๐ผ๐๐ฟ๐ฐ๐ฒ๐ฑ: ๐ผ๐ป๐ฒ ๐บ๐ผ๐ฑ๐ฒ๐น, ๐ฒ๐๐ฒ๐ฟ๐ ๐บ๐ฎ๐ท๐ผ๏ฟฝโฆ
Summary
SenseTime releases SenseNova-Vision-7B-MoT, a fully open-sourced unified multimodal model that handles multiple vision tasks using natural language instructions, supporting detection, OCR, depth, segmentation, and more.
View Cached Full Text
Cached at: 07/14/26, 06:18 AM
SenseNova-Vision-7B-MoT, fully open-sourced: one model, every major vision task below: Detection/OCR/GUI Depth & normal Segmentation Multi-view
It can also define new vision-task variants through natural language โ recombining visual capabilities across traditional task boundaries.
Open-sourced: model weights + the SenseNova-Vision Corpus (50M-example subset, plus full toolkit to reproduce the remaining public-source data) for research & development
HF: https://huggingface.co/sensenova/SenseNova-Vision-7B-MoTโฆ GitHub: https://github.com/OpenSenseNova/SenseNova-Visionโฆ Try the demo: https://huggingface.co/spaces/sensenova/SenseNova-Visionโฆ Technical Report: https://arxiv.org/abs/2607.06560 Discord: http://discord.gg/BuTXPHmQub
sensenova/SenseNova-Vision-7B-MoT ยท Hugging Face
Source: https://huggingface.co/sensenova/SenseNova-Vision-7B-MoT
https://huggingface.co/sensenova/SenseNova-Vision-7B-MoT#vision-as-unified-multimodal-generationVision as Unified Multimodal Generation
English|Simplified Chinese (https://huggingface.co/sensenova/SenseNova-Vision-7B-MoT/blob/main/README_CN.md)
GitHub Stars (https://github.com/OpenSenseNova/SenseNova-Vision)arXiv (https://arxiv.org/abs/2607.06560)ModelScope Model (https://modelscope.cn/models/SenseNova/SenseNova-Vision-7B-MoT)License (https://creativecommons.org/licenses/by-nc/4.0/)
SenseNova-Vision handles diverse vision tasks in a unified model
SenseNova-Vision system overview
๐ Overview
SenseNova-Vision is a unified multimodal model for computer vision. It reformulates heterogeneous visual perception tasks as text generation, image generation, or mixed text-image generation, instead of relying on task-specific heads, decoders, or loss functions for each individual task. The model supports structured visual understanding, dense geometric prediction, segmentation, and multi-view visual geometry within a shared instruction-following interface.
๐ Model Description
SenseNova-Vision rethinks computer vision as unified multimodal generation. Traditional computer-vision systems usually attach task-specific prediction heads for detection, segmentation, depth, surface normal, or 3D geometry. SenseNova-Vision instead expresses these heterogeneous tasks through the native input-output spaces of a unified multimodal model.
Natural-language instructions and optional visual prompts specify the target task, regions, views, output schema, and decoding convention. The model then generates different target formats depending on the task:
| Target type | Representative tasks | Output form |
|---|---|---|
| Structured text | Detection, referring localization, OCR, GUI grounding, keypoints, camera parameters | Text records with normalized coordinates or structured fields |
| Dense image | Depth, surface normal, point maps, binary masks, color-coded masks | Image-like target maps |
| Mixed text-image | Multi-instance segmentation, grounded conversation segmentation, compositional perception | Text labels plus generated masks or visual maps |
This formulation allows a single model to cover structured visual understanding, dense geometric prediction, segmentation, and multi-view visual geometry while keeping outputs decodable for standard benchmarks.
๐ Key Features
- Unified vision-task formulation: Heterogeneous computer-vision tasks are cast into the native text, image, and mixed generation spaces of a unified multimodal model.
- No task-specific heads: The model does not rely on separate detection, segmentation, depth, normal, or geometry heads.
- Decodable outputs: Generated text and images can be converted back into benchmark-compatible boxes, points, OCR strings, masks, depth maps, normal maps, point maps, and camera records.
- Broad task coverage: The same model handles structured visual understanding, segmentation, dense geometry, and multi-view visual geometry.
- Instruction-defined task variants: Natural-language instructions enable flexible task definitions beyond fixed benchmark schemas.
๐ ๏ธ How to Use
Please use the official inference code from the SenseNova-Vision GitHub repository:
git clone https://github.com/OpenSenseNova/SenseNova-Vision.git
cd SenseNova-Vision
Environment Setup
Create the environment from the repository root:
bash setup.sh sensenova-vision
conda activate sensenova-vision
Download the Model
You can download the model weights from Hugging Face with huggingface_hub:
from huggingface_hub import snapshot_download
model_path = snapshot_download("sensenova/SenseNova-Vision-7B-MoT")
print(model_path)
The printed model_path points to the local checkpoint directory and can be used as the model path for inference.
Run the Curated Example
We provide a curated example to quickly verify the environment and model setup:
bash scripts/run_sensenova_vision.sh example
Run One Inference Request
You can also run a single inference request with the official wrapper. For example, the following command performs binary segmentation for the target category "person":
bash scripts/run_sensenova_vision.sh inference \
binary_seg \
"person" \
examples/images/2.jpg
Launch the Web Demo
You can launch the Gradio web demo using the official wrapper provided in the repository. The wrapper will print the local URL before starting Gradio. Open the printed URL in your browser to interact with the model.
For more details, supported tasks, and additional examples, please refer to the official GitHub repository:
https://github.com/OpenSenseNova/SenseNova-Vision
๐๏ธ Key Contributions
- ๐ We introduce a unified multimodal generation formulation that casts heterogeneous computer vision tasks into the native input-output spaces of UMMs.
- ๐งฉ We construct the SenseNova-Vision Corpus, a large-scale computer-vision instruction-response corpus with decodable text, image, and mixed text-image targets.
- โจ We train SenseNova-Vision and show strong results across structured visual understanding, dense geometric prediction, segmentation, and multi-view visual geometry, while supporting language-defined task variants beyond fixed benchmark schemas.
๐ Benchmark Results
SenseNova-Vision is evaluated across structured visual understanding, dense geometric prediction, segmentation, and multi-view visual geometry. All tasks are formulated with natural-language instructions: textual outputs are parsed into benchmark-specific structures such as boxes, points, recognized text, keypoints, and camera parameters, while image outputs are decoded into masks, depth maps, normal maps, or 3D point maps.
Structured Visual Understanding
Structured visual understanding evaluates tasks whose outputs can be represented as structured textual predictions, including box- and point-based localization, referring detection, OCR localization, GUI grounding, and keypoint localization.
| Method | Object Detection | OCR | GUI | Keypoint |
|---|---|---|---|---|
| COCO-Com. | HR/RefCOCOg V/T | LVIS | Dense200 | |
| bbox | bbox | bbox | bbox | |
| Grounding DINO-Swin-T | 56.6 | 25.2 / 45.9 / 46.8 | 38.8 | 33.1 |
| Bagel | 50.2 | 74.6 / 76.4 /77.8 | 46.8 | 42.4 |
| Qwen3-VL-8B-Instruct | 46.6 | 70.4 / 72.3 / 72.6 | 43.2 | 13.5 |
| Qwen3.5-9B | 49.3 | 71.7 / 72.1 / 72.6 | 43.2 | 27.5 |
| LocateAnything | 54.7 | 78.7 /76.7/ 77.6 | 50.7 | 58.7 |
| Rex-Omni | 52.9 | 79.9/ 73.6 / 74.3 | 46.9 | 58.3 |
| SenseNova-Vision | 56.6 | 80.2/79.6/80.5 | 54.8 | 66.8 |
Dense Geometric Prediction
Dense geometric prediction evaluates pixel-aligned geometric outputs, including monocular depth estimation and surface normal estimation.
| Method | Depth | Normal |
|---|---|---|
| NYUv2 | KITTI | |
| AbsRelโ / ฮด1โ | Meanโ / 11.25ยฐโ | |
| DSINE | - | - |
| DepthAnything | 4.3 /98.1 | 7.6 / 94.7 |
| DepthAnything V2 | 4.5 / 97.9 | 7.4 / 94.6 |
| *MoGe-2 | 3.5/ 98.0 | 5.5/97.7 |
| Marigold | 5.5 / 96.4 | 9.9 / 91.6 |
| DICEPTION | 6.1 / 96.0 | 6.9 / 94.9 |
| FE2E | 4.1/97.7 | 6.6/96.0 |
| Lotus-2 | 4.1/ 97.6 | 6.7 / 94.5 |
| SenseNova-Vision | 4.0/98.1 | 5.9/95.9 |
Segmentation
Segmentation evaluates mask prediction under semantic, referring, reasoning, grounded, and interactive guidance.
| Method | Gen. Seg. | Ref. Seg. | Rea. Seg. | GCG Seg. | Inter. Seg. |
|---|---|---|---|---|---|
| Pan. / Sem. | RefCOCO / + / g | Val / Test | Val / Test | Point / Box | |
| LISA-7B | - | 74.9 / 65.1 / 67.9 | 52.9 / 47.3 | 62.0 / 61.7 | - |
| PSALM | 55.9/66.6 | 83.6 / 72.9 / 73.8 | - | - | - |
| Text4Seg | - | 79.2 / 72.8 / 74.0 | 59.1 / 57.1 | - | - |
| LENS | - | 84.2/79.4/81.2 | 62.1/ 57.2 | - | - |
| ConverSeg | - | 79.4 / 74.3 / 74.9 | 61.9 / 57.0 | - | - |
| X-SAM | 54.7/66.5 | 85.1/78.0/83.8 | 56.6 /57.8 | 69.4/69.0 | 65.4/70.0 |
| SenseNova-Vision | 48.8 / 64.0 | 81.3 / 76.0 / 80.3 | 63.2/60.7 | 65.7/66.2 | 60.9 /73.9 |
Multi-View Visual Geometry
Multi-view visual geometry evaluates geometric prediction from multiple input images, including multi-view point map reconstruction and camera pose estimation.
| Method | Multi-View Reconstruction | Camera Pose |
|---|---|---|
| Acc.โ / Comp.โ / F1โ | RRA@30โ / RTA@30โ / AUC@30โ | |
| 7Scenes | ETH3D | |
| DUSt3R | 0.026 / 0.034 / 87.1 | 0.359 / 0.531 / 66.6 |
| DepthAnything3 | 0.020/0.026/90.5 | 0.228 / 0.212 / 76.6 |
| VGGT | 0.023 / 0.032 / 88.4 | 0.177/0.155/80.9 |
| MoRe | 0.038 / 0.039 / 77.1 | 0.348 / 0.318 / 62.7 |
| MapAnything | 0.027/ 0.029 / 87.8 | 0.400 / 0.524 / 67.0 |
| G2VLM | 0.084 / 0.056 / 59.2 | 0.784 / 0.553 / 36.7 |
| SenseNova-Vision | 0.028 /0.026/87.9 | 0.301/0.175/72.2 |
Comparison with Generalist Vision Models
We further compare SenseNova-Vision with recent generalist visual models that span multiple visual capabilities.
| Method | Detection | Sem. Seg. | Ref. Seg. | Depth |
|---|---|---|---|---|
| mAP | mIoU | cIoU | ฮด1 | |
| COCO | Cityscapes | RefCOCO / + / g | NYUv2 | |
| Youtu-VL | 47.1 | 70.4 | 80.7 /76.2/ 76.5 | 90.4 |
| SenseNova-Vision | 53.7 | 71.2 | 81.3/ 76.0 /80.3 | 98.1 |
| Method | Sem. Seg. | Ref. Seg. | Rea. Seg. | Depth | Normal |
|---|---|---|---|---|---|
| mIoU | cIoU | gIoU | ฮด1 | Mean Errorโ | |
| Cityscapes | RefCOCOg | ReasonSeg | KITTI | NYUv2 | |
| Vision Banana | 69.9 | 73.8 | 79.3 | 91.5 | 94.8 |
| SenseNova-Vision | 71.2 | 80.3 | 63.2 | 95.9 | 98.1 |
General Multimodal Capability
SenseNova-Vision largely maintains general multimodal capability while being adapted to visual perception tasks.
| Method | Understanding | Generation |
|---|---|---|
| MMMU | MMVP | |
| Bagel | 0.55 | 69.3 |
| SenseNova-Vision | 0.42 | 79.0 |
๐ผ๏ธ Qualitative Examples
SenseNova-Vision qualitative results across vision tasks
๐ Training Data
SenseNova-Vision is trained on the SenseNova-Vision-Corpus-50M, a large-scale computer-vision instruction-response corpus. The corpus converts heterogeneous annotations into a shared schema with visual inputs, natural-language instructions, and decodable targets represented as text, image, or mixed text-image responses.
The corpus covers four task families:
| Task family | Representative tasks | Target representation |
|---|---|---|
| Structured visual understanding | Detection, referring localization, pointing, keypoints, OCR, layout, GUI grounding | Text records with normalized coordinates and lightweight structure markers |
| Dense geometric prediction | Monocular depth estimation and surface-normal prediction | Deterministically encoded image targets |
| Segmentation | Referring, reasoning, interactive, generic, and grounded-conversation segmentation | Binary masks, color-coded masks, or mixed text-image responses |
| Multi-view visual geometry | Point-map reconstruction and camera-pose estimation | Image-like point maps and structured camera records |
โ ๏ธ Limitations
- Not a specialist model for every task: Although SenseNova-Vision covers many tasks, task-specific models may still outperform it on certain specialized benchmarks.
- Output parsing is task-dependent: Textual outputs require task-specific parsers, and image outputs require decoding rules consistent with the training protocol.
- Metric accuracy is not guaranteed: Dense depth, normal, point-map, and camera-pose predictions should be validated carefully before downstream use.
- Prompt sensitivity: As an instruction-following model, performance can vary with prompt wording, output schema, and visual prompt style.
- Dataset and benchmark bias: Model behavior reflects the distribution and annotation conventions of the training corpus.
๐ก๏ธ Ethical Considerations
SenseNova-Vision may generate incorrect localization, segmentation, depth, normal, or camera predictions. Users should avoid deploying the model in safety-critical settings without independent verification. When used for datasets involving people, faces, documents, medical scenes, surveillance imagery, or private environments, users are responsible for complying with applicable privacy, consent, and data-governance requirements.
Similar Articles
@AdinaYakup: SenseNova-Vision SenseTime's new model treats all of computer vision as generation - 7B - CC BY-NC 4.0 ( non commercialโฆ
SenseTime released SenseNova-Vision, a 7B parameter model that unifies computer vision tasks as generation, with open weights, instruction corpus, benchmark, paper, and demo.
SenseNova-U1.5: Towards Native Unified Visual Intelligence
SenseNova-U1.5 is an 8B native unified multimodal model that performs visual understanding, reasoning, and generation without encoders or VAEs, achieving high fidelity and instruction following through patch reconstruction, curated data, and expert optimization.
sensenova/SenseNova-U1.5-8B-MoT
SenseNova-U1.5-8B-MoT is a native unified multimodal model for enhanced visual creation, featuring improvements in image generation quality, text rendering, and precise control.
sensenova/SenseNova-U1-8B-MoT
SenseNova U1 is a new series of native multimodal models that unify understanding and generation within a single architecture using the NEO-Unify framework, eliminating the need for separate visual encoders or VAEs.
Vision as Unified Multimodal Generation
This paper presents SenseNova-Vision, a unified multimodal model that formulates computer vision tasks as generation problems, achieving performance comparable to specialized systems across diverse vision tasks. It introduces a large-scale instruction-response corpus and publicly releases the model and datasets.