robbyant/lingbot-video-moe-30b-a3b

Hugging Face Models Trending Models

Summary

LingBot-Video is the first open-source large-scale MoE video generation model for embodied intelligence, featuring efficient MoE architecture, massive embodied data training, and multi-reward system for high aesthetics, physical rationality, and task completion.

Tags: diffusers, safetensors, license:apache-2.0, diffusers:LingBotVideoPipeline, region:us
Original Article
View Cached Full Text

Cached at: 07/11/26, 12:10 AM

robbyant/lingbot-video-moe-30b-a3b · Hugging Face

Source: https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b 🌐Project Page|🤗Hugging Face|🤖ModelScope|📄Paper|⚖️License

We are excited to introduceLingBot-Video, the first open-source large-scale MoE (Mixture-of-Experts) video generation model dedicated to embodied intelligence. As a top-tier video model, LingBot-Video is designed to bridge the gap between video synthesis and physical world understanding.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%94%A5-key-highlights🔥 Key Highlights

  • 🚀 Efficient MoE Architecture: Scaled from scratch; balanced between capacity and cost with**~3x**faster inference.
  • 📦 Data Engine: Trained on massive web videos integrated with70,000+ hoursof embodied data.
  • ⚖️ Multi Reward System: Rewarded forhigh aesthetics,physical rationality, andtask completion.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%94%A5-latest-news🔥 Latest News

  • July 9, 2026: 🎉 We release the technical report, code, models, rewriters for LingBot-Video.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%93%A6-model-download📦 Model Download

Model NameComponentsTasksDownload⚡ LingBot-Video-DenseDense (1.3B)T2I, T2V, TI2V🤗Huggingface🤖ModelScope💪 LingBot-Video-MoEMoE (30B-A3B) + RefinerT2I, T2V, TI2V, Refinement🤗Huggingface🤖ModelScope📝 LingBot-Video-Rewriter-BaseQwen3.6-27B officialPrompt rewriter (Expand)🤗Huggingface🤖ModelScope📝 LingBot-Video-Rewriter-AdapterQwen3.6-27B LoRAPrompt rewriter (Json)🤗Huggingface🤖ModelScope

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%9A%80-quick-start🚀 Quick Start

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%9B%A0%EF%B8%8F-installation🛠️ Installation

The rootrequirements\.txtincludes the recommended PyTorch build for LingBot-Video inference.

git clone https://github.com/Robbyant/lingbot-video
cd lingbot-video

python -m venv .venv
source .venv/bin/activate
python -m pip install -U pip

# Base requirements cover direct DiT inference and rewriter --backend transformers.
pip install -r requirements.txt
pip install -e .

💡 Rewriter deployment: the bundled rewriter uses the single-processtransformersbackend. For higher throughput, deploy the VLM yourself and call it through an OpenAI-compatible API. Preserve the two-stage semantics: step 1 must use the base VLM without the rewriter LoRA, while step 2 must use the same base VLM with the rewriter LoRA enabled. This can be implemented with two endpoints, or with one server that can select the adapter per request. SeevLLM/SGLangofficial docs.

Install the optional SGLang dependencies only when using SGLang Diffusion or the fused / FP8 MoE runtime:

python -m pip install --no-deps -r requirements-sglang.txt

Recommended runtime versions:

PackageVersionPython``\>=3\.10``torch``2\.12\.0\.dev20260220\+cu130(recommended)torchvision``0\.26\.0\.dev20260220\+cu130(recommended)transformers``5\.8\.1``diffusers``0\.39\.0``peft``0\.19\.1``json\_repair``\>=0\.30``decord``\>=0\.6\.0``safetensors``\>=0\.4\.5

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%8E%AC-inference🎬 Inference

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%A7%AD-recommended-inference-workflow🧭 Recommended Inference Workflow

LingBot-Video DiT inference is designed to consume structured JSON captions, not casual natural-language prompts. The recommended public workflow is:

  1. Rewrite the user’s plain prompt with Prompt Rewriter. For TI2V, pass the same first frame to the rewriter.
  2. Run Auto Negative by default to prune the negative prompt for this specific caption.
  3. Run the unified inference runner with\-\-prompt\_jsonand select direct diffusers or SGLang Diffusion through\-\-backend.

Backend choices:

  • diffusers: direct diffusers reference path.
  • sglang: SGLang Diffusion path. If the optional SGLang package is not installed, it automatically falls back to direct diffusers and prints a warning. Installrequirements\-sglang\.txtto enable the SGLang runtime.

For multi-GPU inference, add\-\-enable\_fsdp\_inferenceto shard the base DiT and refiner DiT on GPU. This reduces GPU memory pressure after loading, but each rank still constructs the transformer on host memory before FSDP sharding; make sure the machine has enough system RAM for large MoE checkpoints.

# Model root (released Dense or MoE package) and rewriter weights.
export MODEL_DIR="<path_to_lingbot-video-model>"
export REWRITER_BASE_MODEL="<path_to_rewriter_base_vlm>"
export REWRITER_ADAPTER="<path_to_rewriter_lora>"

python rewriter/inference.py --backend transformers --mode t2v \
  --prompt "<plain_user_prompt>" --duration 5 --output prompt.json

# Recommended Auto Negative block. If skipped, remove --negative_prompt_json from
# the DiT inference command.
python rewriter/auto_negative.py --backend transformers --mode t2v \
  --caption prompt.json --output negative.json

export BACKEND=diffusers  # or: sglang

python scripts/inference.py \
  --backend "$BACKEND" \
  --model_dir "$MODEL_DIR" \
  --run_refiner \
  --mode t2v \
  --prompt_json prompt.json \
  --negative_prompt_json negative.json \
  --output "<output_dir>/base.mp4" \
  --refiner_output "<output_dir>/refined.mp4" \
  --height 480 \
  --width 832 \
  --fps 24 \
  --steps 40 \
  --refiner_steps 8 \
  --guidance_scale 3 \
  --refiner_guidance_scale 3 \
  --shift 3 \
  --refiner_shift 3 \
  --transformer_dtype bf16 \
  --text_encoder_dtype bf16 \
  --vae_dtype fp32 \
  --refiner_vae_dtype fp32 \
  --reuse_condition_features

Ready-to-run scripts are provided for single-GPU and multi-GPU inference. Set your environment and model path first:

source .venv/bin/activate
export PYTHON_BIN=python
export DENSE_MODEL_DIR="<path_to_lingbot-video-dense>"
export MOE_MODEL_DIR="<path_to_lingbot-video-moe>"

Single-GPU scripts use direct diffusers and batched CFG by default. They run base generation only.

MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/single-gpu/run_dense_t2i.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/single-gpu/run_dense_t2v.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/single-gpu/run_dense_ti2v.sh

MODEL_DIR="$MOE_MODEL_DIR" ./scripts/single-gpu/run_moe_t2i.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/single-gpu/run_moe_t2v.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/single-gpu/run_moe_ti2v.sh

Multi-GPU no-refiner scripts use the same inference arguments as the single-GPU scripts, plus CP8 and FSDP:

MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_dense_t2i_fsdp_cp8.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_dense_t2v_fsdp_cp8.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_dense_ti2v_fsdp_cp8.sh

MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_moe_t2i_fsdp_cp8.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_moe_t2v_fsdp_cp8.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus-no-refiner/run_moe_ti2v_fsdp_cp8.sh

Multi-GPU refiner scripts use CP8 + FSDP + batched CFG by default. They also default to direct diffusers; setBACKEND=sglangexternally when you want to exercise SGLang Diffusion. MoE multi-GPU T2V/TI2V scripts additionally run the refiner.

MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus/run_dense_t2i_fsdp_cp8.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus/run_dense_t2v_fsdp_cp8.sh
MODEL_DIR="$DENSE_MODEL_DIR" ./scripts/multi-gpus/run_dense_ti2v_fsdp_cp8.sh

MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus/run_moe_t2i_fsdp_cp8.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus/run_moe_t2v_refiner_fsdp_cp8.sh
MODEL_DIR="$MOE_MODEL_DIR" ./scripts/multi-gpus/run_moe_ti2v_refiner_fsdp_cp8.sh

All scripts accept the same environment overrides, such asPROMPT\_JSON,IMAGE,OUT\_DIR,HEIGHT,WIDTH,STEPS,GUIDANCE\_SCALE,SHIFT,SEED,FPS,BACKEND, andPYTHON\_BIN. Refiner scripts also acceptREFINER\_HEIGHT,REFINER\_WIDTH,REFINER\_STEPS,REFINER\_GUIDANCE\_SCALE,REFINER\_SHIFT,REFINER\_T\_THRESH, andREFINER\_SIGMA\_TAIL\_STEPS. MoE scripts default to grouped expert execution (LINGBOT\_MOE\_EXPERT\_BACKEND=grouped\_mm).

See English Docs or 中文文档 for the detailed prompt rewrite, auto-negative, TI2V, base-only/refiner, distributed SGLang, and speed-first FP8 workflows.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%93%8A-benchmarks📊 Benchmarks

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%8F%9B%EF%B8%8F-public-benchmark🏛️ Public Benchmark

As of July 9th, 2026, LingBot-Video ranks top inRBench Leaderboard.

ModelsOpen-sourceAvg.Manip.SpatialMulti-entityLong-hor.ReasoningSingle armDual armQuadrupedHumanoidLingBot-Video (Ours)0.620****0.5780.6430.4440.6340.5050.6360.6390.7580.689Cosmos3 Super✅0.5810.4870.6420.4440.5910.3950.6150.6230.7390.691LongCat-Video✅0.4370.3720.3100.2200.3840.1860.5860.5760.6810.621Wan 2.2 A14B✅0.5070.3810.4540.3730.5010.3300.6080.5820.6900.648HunyuanVideo 1.5✅0.4600.4420.3160.3120.4380.3640.5130.5260.6340.595Wan 2.6❌0.6070.5460.6560.4790.5140.5310.6660.6810.7230.667Seedance 1.5 pro❌0.5840.5770.4950.4840.5700.4700.6480.6410.6800.692Veo 3❌0.5630.5210.5080.4300.5300.5040.6340.6100.6890.637 Note:Boldindicates the best performance, andunderlineindicates the second best.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%E2%9A%96%EF%B8%8F-license⚖️ License

This project is licensed under the Apache 2.0 License. Please refer to theLICENSE filefor the full text, including details on rights and restrictions.

https://huggingface.co/robbyant/lingbot-video-moe-30b-a3b#%F0%9F%93%9A-citation📚 Citation

If you find this work useful for your research, please cite our paper:

@article{lingbot-video,
  title = {Scaling Mixture-of-Experts Video Pretraining for Embodied Intelligence},
  author = {Shuailei Ma and Jiaqi Liao and Xinyang Wang and Jingjing Wang and Chaoran Feng and Zijing Hu and Chong Bao and Zichen Xi and Yuqi Gan and Weisen Wang and Yanhong Zeng and Qin Zhao and Zifan Shi and Wei Wu and Hao Ouyang and Qiuyu Wang and Shangzhan Zhang and Jiahao Shao and Yipengjing Sun and Liangxiao Hu and Lunke Pan and Nan Xue and Kecheng Zheng and Yinghao Xu and Xing Zhu and Yujun Shen and Ka Leong Cheng},
  journal={arXiv preprint arXiv:2607.xxxxx},
  year = {2026}
}

Similar Articles

robbyant/lingbot-world-v2-14b-causal-fast

Hugging Face Models Trending

LingBot-World 2.0 is an advanced world model achieving unbounded interaction horizons, real-time 720p/60fps video streaming, diverse interactive elements, and an agentic harness integrating pilot and director agents. The model is released on Hugging Face with inference code and technical report.

robbyant/lingbot-map

Hugging Face Models Trending

LingBot-Map is a feed-forward 3D foundation model for streaming 3D reconstruction that uses a Geometric Context Transformer architecture, achieving state-of-the-art performance with efficient ~20 FPS inference on long sequences exceeding 10,000 frames.