百科.dev
全部条目AI 编程趋势榜开源项目技术资讯提交条目
登录
< 返回工具列表
L

lingbot-world-v2

> 编程语言
开源

具有多种交互的无限世界

1.4K stars0 点赞0 次浏览
访问官网GitHub

工具介绍

具有多种交互的无限世界

----- We present **LingBot-World 2.0** (also known as **LingBot-World-Infinity**), an advanced iteration of [LingBot-World](https://technology.robbyant.com/lingbot-world) featuring four distinct upgrades. - **Unbounded Interaction Horizon**: Our model achieves an unbounded interaction horizon while maintaining consistent output quality, benefiting from a carefully crafted causal pretraining paradigm. - **Rapid Response Time**: Through distilling a real-time variant from the base model, our system guarantees rapid response time, sufficient to drive 720p video streams at 60 fps. - **Highly Diverse Interactive Elements**: Compared to the previous version, this update introduces highly diverse interactive elements, comprising a broader spectrum of actions (*e.g.*, attacking, archery, spell-casting, and shooting) alongside a richer variety of text-driven events. - **Agentic Harness**: We pioneer the integration of an agentic harness within the domain of world modeling, wherein a pilot agent is tasked with planning and executing character behaviors, while a director agent is responsible for synthesizing novel environmental elements as the scene progresses. ## Try it now The real-time version of LingBot-World-Infinity is available on two platforms. We thank [Reactor](https://www.reactor.inc/lingbot-world-v2) and [LingGuang](https://www.lingguang.com/support) for their support: - **International (Web)**: Experience it on [Reactor](https://www.reactor.inc/lingbot-world-v2). - **Domestic (Mobile)**: Experience it on [LingGuang](https://www.lingguang.com/support). > **Note:** Reactor and LingGuang provide a convenient way to try LingBot-World-Infinity in real time. In our official setup, the model runs at full capability. To experience our official demo, join us at [WAIC 2026](https://waica2026.worldaic.com.cn/). ## Demo Gallery ### LingBot-World-V2-14B-Causal-Pretrain ### LingBot-World-V2-14B-Causal-Fast ### LingBot-World-V2-1.3B-Causal-Fast

✨ For more high-fidelity and compelling demos, please visit our Project Page.

## News - Sep. 10, 2026: We release the remaining full model variants: the 14B model’s causal-pretrained and bidirectional variants, and the 1.3B model’s causal-fast variant. - Jul. 9, 2026: We release the technical report, inference code, and models for LingBot-World-Infinity. ## TODO - [x] Release the causal-fast inference code and model of the 14B model - [x] Release the causal-pretrained model of the 14B model - [x] Release the bidirectional model of the 14B model - [x] Release the causal-fast model of the 1.3B model ## ⚙️ Quick Start This codebase is built upon [Wan2.2](https://github.com/Wan-Video/Wan2.2). Please refer to their documentation for installation instructions. ### Installation Clone the repo: ```sh git clone https://github.com/robbyant/lingbot-world-v2.git cd lingbot-world-v2 ``` Install dependencies: ```sh # Ensure torch >= 2.4.0 pip install -r requirements.txt ``` Install [`flash_attn`](https://github.com/Dao-AILab/flash-attention): ```sh pip install flash-attn --no-build-isolation ``` ### Model Download | Model | Model Type | Model Size | Download Links | | :--- | :--- | :--- | :--- | | **lingbot-world-v2-14b-causal-fast** | causal-fast | 14B | [HuggingFace](https://huggingface.co/robbyant/lingbot-world-v2-14b-causal-fast) [ModelScope](https://www.modelscope.cn/models/Robbyant/lingbot-world-v2-14b-causal-fast) | | **lingbot-world-v2-14b-causal-pretrain** | causal-pretrain | 14B | [HuggingFace](https://huggingface.co/robbyant/lingbot-world-v2-14b-causal-pretrain) | | **lingbot-world-v2-14b-bid** | bidirectional | 14B | [HuggingFace](https://huggingface.co/robbyant/lingbot-world-v2-14b-bid) | | **lingbot-world-v2-1.3b-causal-fast** | causal-fast | 1.3B | [HuggingFace](https://huggingface.co/robbyant/lingbot-world-v2-1.3b-causal-fast) | Download models using huggingface-cli: ```sh pip install "huggingface_hub[cli]" huggingface-cli download robbyant/lingbot-world-v2-14b-causal-fast --local-dir ./lingbot-world-v2-14b-causal-fast huggingface-cli download robbyant/lingbot-world-v2-1.3b-causal-fast --local-dir ./lingbot-world-v2-1.3b-causal-fast/transformers ``` Download models using modelscope-cli: ```sh pip install modelscope modelscope download robbyant/lingbot-world-v2-14b-causal-fast --local_dir ./lingbot-world-v2-14b-causal-fast ``` The 1.3B Hugging Face package currently contains the DiT weights only. T5, VAE, and the tokenizer are shared with the 14B release — pass them with `--assets_dir` (or the third argument of `run_fast.sh`): ### Inference We provide `generate.py` for causal inference with KV caching, which processes video frames chunk-by-chunk instead of all at once. - `causal_fast` 14B — 480P, 8 GPUs (`ulysses_size` must divide 40 heads): ``` sh torchrun --nproc_per_node=8 generate.py --task i2v-A14B --size 480*832 --ckpt_dir lingbot-world-v2-14b-causal-fast --image examples/03/image.jpg --action_path examples/03 --dit_fsdp --t5_fsdp --ulysses_size 8 --frame_num 361 --local_attn_size 18 --sink_size 6 --prompt "A serene lakeside scene with a lone tree standing in calm water, surrounded by distant snow-capped mountains under a bright blue sky with drifting white clouds — gentle ripples reflect the tree and sky, creating a tranquil, meditative atmosphere." ``` - `causal_fast` 1.3B — 480P, 4 GPUs (`ulysses_size` must divide 12 heads). Reuse T5/VAE from the 14B checkpoint if the 1.3B folder does not include them: ``` sh torchrun --nproc_per_node=4 generate.py --task i2v-1.3B --size 480*832 --ckpt_dir lingbot-world-v2-1.3b-causal-fast --assets_dir lingbot-world-v2-14b-causal-fast --image examples/03/image.jpg --action_path examples/03 --dit_fsdp --t5_fsdp --ulysses_size 4 --frame_num 361 --local_attn_size 18 --sink_size 6 --prompt "A serene lakeside scene with a lone tree standing in calm water, surrounded by distant snow-capped mountains under a bright blue sky with drifting white clouds — gentle ripples reflect the tree and sky, creating a tranquil, meditative atmosphere." ``` - `causal_pretrain` — 480P, multi-GPU: ``` sh torchrun --nproc_per_node=8 generate.py --task i2v-A14B --infer_mode causal_pretrain --size 480*832 --ckpt_dir lingbot-world-v2-14b-causal-pretrain --image examples/03/image.jpg --action_path examples/03 --dit_fsdp --t5_fsdp --ulysses_size 8 --frame_num 81 --prompt "A serene lakeside scene with a lone tree standing in calm water, surrounded by distant snow-capped mountains under a bright blue sky with drifting white clouds — gentle ripples reflect the tree and sky, creating a tranquil, meditative atmosphere." ``` You can also use the provided `run_fast.sh` script. The task and GPU count are inferred from the checkpoint directory name (`*1.3b*` / `*1p3b*` → 1.3B on 4 GPUs, otherwise 14B on 8 GPUs): ``` sh bash run_fast.sh [assets_dir] # e.g. bash run_fast.sh lingbot-world-v2-14b-causal-fast 361 # e.g. bash run_fast.sh lingbot-world-v2-1.3b-causal-fast 361 lingbot-world-v2-14b-causal-fast ``` ### Deployment We do NOT plan to release our deployment code. If you would like to deploy our model yourself, please refer to the LingBot-World deployment in [SGLang](https://docs.sglang.io/cookbook/diffusion/LingBot-World/LingBot-World-2.0) or [flashdreams](https://github.com/NVIDIA/flashdreams). ## Related Projects - [LingBot-World](https://github.com/robbyant/lingbot-world) ## License This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0). The project is available for non-commercial use only: you may share and adapt it with proper attribution, but derivative works must be distributed under the same license. Please refer to the [LICENSE file](LICENSE.txt) for the full text, including details on rights and restrictions. ## ✨ Acknowledgement We would like to express our gratitude to the Wan Team for open-sourcing their code and models. Their contributions have been instrumental to the development of this project. ## Citation If you find this work useful for your research, please cite our paper: ``` @article{lingbot-world-v2, title={Infinite Worlds with Versatile Interactions}, author={Zelin Gao and Qiuyu Wang and Jiapeng Zhu and Jingye Chen and Zichen Liu and Qingyan Bai and Jiahao Wang and Yufeng Yuan and Hanlin Wang and Yichong Lu and Ka Leong Cheng and Haojie Zhang and Jian Gao and Tianrui Feng and Yuzheng Liu and Yao Yao and Yinghao Xu and Xing Zhu and Yujun Shen and Hao Ouyang}, journal={arXiv preprint arXiv:2607.07534}, year={2026} } ```

GitHub Issues· 7 开放

在 GitHub 查看全部
  • #10

    Released inference code caps out at ~4m16s due to RoPE table size — how was the "over one hour, no perceptible decay" result in the paper achieved?

    更新于 2026年9月6日
  • #8

    would a small external action-trajectory sample be useful

    更新于 2026年7月28日
  • #7

    What GPU configuration is required for inference?

    更新于 2026年7月21日
  • #6

    Does it support generation with multiple prompts?

    更新于 2026年7月14日
  • #5

    Any plan to release Agentic Harness code?

    更新于 2026年7月14日
  • #2

    Black Screen issue

    更新于 2026年7月9日
  • #1

    Release remaining LingBot-World-v2 models on Hugging Face

    更新于 2026年7月9日

核心特点

  • •Rapid Response Time: Through distilling a real-time variant from the base model, our system guarantees rapid response time, sufficient to drive 720p video streams at 60 fps.
  • •International (Web): Experience it on Reactor.
  • •Domestic (Mobile): Experience it on LingGuang.
  • •Sep. 10, 2026: We release the remaining full model variants: the 14B model’s causal-pretrained and bidirectional variants, and the 1.3B model’s causal-fast variant.
  • •Jul. 9, 2026: We release the technical report, inference code, and models for LingBot-World-Infinity.
  • •[x] Release the causal-fast inference code and model of the 14B model
  • •[x] Release the causal-pretrained model of the 14B model
  • •[x] Release the bidirectional model of the 14B model
  • •[x] Release the causal-fast model of the 1.3B model
  • •causal_fast 14B — 480P, 8 GPUs (ulysses_size must divide 40 heads):

> 标签

Python

暂无评论,来聊聊你的看法吧

> 工具信息

发布日期2026年8月1日
最后更新2026年9月17日
分类编程语言
定价开源

> 相关工具

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言