Ming-flash-omni Preview
๐ Technical Report๏ฝ๐ค Hugging Face๏ฝ ๐ค ModelScope
Introduction
Ming-flash-omni Preview, an upgraded version of Ming-Omni, built upon a sparser Mixture-of-Experts (MoE) variant of Ling-Flash-2.0 with 100B total parameters, of which only 6B are active per token. Compared to its predecessor, the upgraded version exhibits substantial improvements across multimodal understanding and generation. We significantly advance speech recognition capabilities, achieving state-of-the-art performance in both contextual ASR and dialect-aware ASR. In image generation, Ming-flash-omni Preview introduces high-fidelity text rendering and demonstrates marked gains in scene consistency and identity preservation during image editing. Furthermore, Ming-flash-omni Preview introduces generative segmentation, a capability that not only achieves strong standalone segmentation performance but also enhances spatial control in image generation and improves editing consistency. It demonstrates highly competitive results in various modal benchmarks compared to industry-leading models.
๐ Updates
- [2025.10.27] ๐ฅ We release the preview version of Ming-flash-omni๏ผMing-flash-omni Preview.
- [2025.07.15] ๐ฅ We release Ming-lite-omni v1.5 with significant improvements across all modalities.
- [2025.06.12] ๐ฅ Our Technical Report is in public on arxiv.
- [2025.05.28] ๐ฅ The official version of Ming-lite-omni v1 is released, with better performance and image generation support.
- [2025.05.04] ๐ฅ We release the test version of Ming-lite-omni๏ผMing-lite-omni-Preview.
Key Features
Compared to Ming-lite-omni v1.5, Ming-flash-omni Preview features key optimizations in the following 3 areas:
- Sparse MoE Architecture for Omni-Modality: The Sparse MoE Architecture for Omni-Modality features a 100B-A6B MoE backbone (an extension of Ling-Flash-2.0). To ensure uniform expert activation and stable training across all modalities, Ming-flash-omni Preview employs a Dual-Balanced Routing Mechanism that combines an Auxiliary Load Balancing Loss with a Modality-Level Router Bias Update.
- Generative Segmentation-as-Editing Paradigm: It unifies segmentation and editing into a semantics-preserving generation task, and achieves $0.90$ on GenEval, surpassing non-RL methods in fine-grained spatial control.
- Context-Aware and Dialectal Speech Recognition: Ming-flash-omni Preview sets a new State-of-the-Art performance across all 12 ContextASR benchmarks, and it significantly improves recognition performance for 15 Chinese dialects.
Use Cases
Steaming Video Conversation
Audio Context ASR & Dialect ASR
Audio Voice Clone
Image Generation & Editing
Model Downloads
You can download our latest model from both Huggingface and ModelScope. For previous version model like Ming-Lite-Omni v1.5, Please refer to this link.
| Model | Input modality | Oput modality | Download |
|---|---|---|---|
| Ming-flash-omni Preview | Image,text,video,audio | Image,text,audio | ๐ค HuggingFace ๐ค ModelScope |
pip install modelscope
modelscope download --model inclusionAI/Ming-flash-omni-Preview --local_dir inclusionAI/Ming-flash-omni-Preview --revision master
Note: This download process will take several minutes to several hours, depending on your network conditions.
Evaluation
Ming-flash-omni Preview shows competitive performance in vision-text understanding, image generation, audio understanding and text-to-speech capabilities. For detailed evaluation results๏ผplease refer to our techinical report.
Example Usage
We provide a simple example on the usage of this repo. For detailed usage, please refer to cookbook.ipynb.
import os
import torch
import warnings
from bisect import bisect_left
warnings.filterwarnings("ignore")
from transformers import AutoProcessor
from modeling_bailingmm2 import BailingMM2NativeForConditionalGeneration
def split_model():
device_map = {}
world_size = torch.cuda.device_count()
num_layers = 32
layer_per_gpu = num_layers // world_size
layer_per_gpu = [i * layer_per_gpu for i in range(1, world_size + 1)]
for i in range(num_layers):
device_map[f'model.model.layers.{i}'] = bisect_left(layer_per_gpu, i)
device_map['vision'] = 0
device_map['audio'] = 0
device_map['linear_proj'] = 0
device_map['linear_proj_audio'] = 0
device_map['model.model.word_embeddings.weight'] = 0
device_map['model.model.norm.weight'] = 0
device_map['model.lm_head.weight'] = 0
device_map['model.model.norm'] = 0
device_map[f'model.model.layers.{num_layers - 1}'] = 0
return device_map
# Load pre-trained model with optimized settings, this will take ~10 minutes
model_path = "inclusionAI/Ming-flash-omni-Preview"
model = BailingMM2NativeForConditionalGeneration.from_pretrained(
model_path,
torch_dtype=torch.bfloat16,
attn_implementation="flash_attention_2",
device_map=split_model(),
load_image_gen=True,
load_talker=True,
).to(dtype=torch.bfloat16)
# Initialize processor for handling multimodal inputs
processor = AutoProcessor.from_pretrained(model_path, trust_remote_code=True)
# Inference Pipeline
def generate(messages, processor, model, sys_prompt_exp=None, use_cot_system_prompt=False, max_new_tokens=512):
text = processor.apply_chat_template(
messages,
sys_prompt_exp=sys_prompt_exp,
use_cot_system_prompt=use_cot_system_prompt
)
image_inputs, video_inputs, audio_inputs = processor.process_vision_info(messages)
inputs = processor(
text=[text],
images=image_inputs,
videos=video_inputs,
audios=audio_inputs,
return_tensors="pt",
audio_kwargs={"use_whisper_encoder": True},
).to(model.device)
for k in inputs.keys():
if k == "pixel_values" or k == "pixel_values_videos" or k == "audio_feats":
inputs[k] = inputs[k].to(dtype=torch.bfloat16)
with torch.no_grad():
generated_ids = model.generate(
**inputs,
max_new_tokens=max_new_tokens,
use_cache=True,
eos_token_id=processor.gen_terminator,
num_logits_to_keep=1,
)
generated_ids_trimmed = [
out_ids[len(in_ids):] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = processor.batch_decode(
generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)[0]
return output_text
# qa
messages = [
{
"role": "HUMAN",
"content": [
{"type": "text", "text": "่ฏท่ฏฆ็ปไป็ป้นฆ้น็็ๆดปไน ๆงใ"}
],
},
]
output_text = generate(messages, processor=processor, model=model)
print(output_text)
# Output:
# ้นฆ้นๆฏไธ็ง้ๅธธ่ชๆๅ็คพไบคๆงๅผบ็้ธ็ฑป๏ผๅฎไปฌ็็ๆดปไน ๆง้ๅธธไธฐๅฏๅๆ่ถฃใไปฅไธๆฏไธไบๅ
ณไบ้นฆ้น็ๆดปไน ๆง็่ฏฆ็ปไป็ป๏ผ
# ### 1. **ๆ ๆฏๅฐ**
# ้นฆ้นไธป่ฆๅๅธๅจ็ญๅธฆๅไบ็ญๅธฆๅฐๅบ๏ผๅ
ๆฌ้ๆดฒใไบๆดฒใๆพณๅคงๅฉไบๅๅ็พๆดฒใๅฎไปฌ้ๅธธ็ๆดปๅจๆฃฎๆใ่ๅใๆฒๆผ ๅๅๅธ็ฏๅขไธญใไธๅ็ง็ฑป็้นฆ้นๅฏนๆ ๆฏๅฐ็่ฆๆฑๆๆไธๅ๏ผไฝๅคงๅคๆฐ้นฆ้นๅๆฌขๆไธฐๅฏๆค่ขซๅๆฐดๆบ็ๅฐๆนใ
# ### 2. **้ฅฎ้ฃ**
# ้นฆ้นๆฏๆ้ฃๆงๅจ็ฉ๏ผๅฎไปฌ็้ฅฎ้ฃ้ๅธธๅคๆ ทๅใๅฎไปฌ็้ฃ็ฉๅ
ๆฌ็งๅญใๅๆใๆฐดๆใ่ฌ่ใ่ฑ่ๅๆ่ซใ้นฆ้น็ๅ้ๅธธๅผบๅฃฎ๏ผ่ฝๅค่ฝปๆพๅฐๆๅผๅ็กฌ็ๆๅฃณๅๅๆใไธไบ้นฆ้น่ฟไผๅๆณฅๅๆๆฒๅญ๏ผไปฅๅธฎๅฉๆถๅๅ่กฅๅ
็ฟ็ฉ่ดจใ
# ......
Citation
If you find our work helpful, feel free to give us a cite.
@misc{Mingflash2025,
title = {Ming-Flash-Omni: A Sparse, Unified Architecture for Multimodal Perception and Generation},
author = {Inclusion AI},
year = {2025},
eprint = {2510.24821},
archivePrefix = {arXiv},
url = {https://arxiv.org/abs/2510.24821}
}
@misc{Mingomni2025,
title = {Ming-Omni: A Unified Multimodal Model for Perception and Generation},
author = {Inclusion AI},
year = {2025},
eprint = {2506.09344},
archivePrefix = {arXiv},
url = {https://arxiv.org/abs/2506.09344}
}
- Downloads last month
- 3
Model tree for anas89ji/Ming-flash-omni-Preview
Base model
inclusionAI/Ling-flash-base-2.0