Command Palette
Search for a command to run...
H3-World: 언어 이해를 세계 제어로 전환
H3-World: 언어 이해를 세계 제어로 전환
Danze Chen Zeqing Wang Ziyue Lin Xingyi Yang Yeying Jin
초록
본 논문은 33B 규모의 MiniMax-H3 비디오 생성기를 대화형 세계 모델로 전환하는 효율적인 프레임워크인 H3-WORLD를 제시한다. 우리의 핵심 발견은 대규모 비디오 생성기의 성능이 향상됨에 따라 언어가 제어를 위한 자연스러운 인터페이스로 부상하고 있다는 점이다. 예를 들어 MiniMax-H3는 이미 자연어 지시를 통해 캐릭터 행동과 카메라 움직임을 제로샷으로 제어할 수 있다. 이를 바탕으로 H3-WORLD는 전용 행동 모듈을 도입하지 않고도 이 거친 언어 인터페이스를 정밀하고 시간적으로 정합된 세계 제어로 전환한다. 구체적으로, 각 행동을 캐릭터 및 카메라 지시의 구조화된 조합으로 표현하고 이를 해당 시간적 비디오 잠재 변수와 정렬한다. 제어의 시간적 정밀도를 높이기 위해 시간적 어텐션 라우팅을 추가로 도입하여 각 지시가 의도된 시간 구간으로 제한되도록 하고 행동 간 제어 누출을 줄인다. 중요한 점은 H3-WORLD가 대규모 비디오 사전 훈련 과정에서 학습된 의미 표상을 직접 재사용하며 경량화된 적응만 필요로 한다는 것이다. 단 8,000개의 게임플레이 샘플, 10,000회의 LoRA 최적화 스텝, 그리고 0.199%의 훈련 가능한 매개변수만으로 H3-WORLD는 우수한 생성 품질을 유지하면서 효과적인 캐릭터 및 카메라 제어를 달성한다. 또한 본 모델은 학습 중 보지 못한 시나리오로 일반화된다. 이러한 결과는 대규모 비디오 생성기에서 발현되는 제어 능력이 대화형 세계 제어로 효율적으로 전환될 수 있음을 보여준다.
One-sentence Summary
H3-WORLD, an efficient framework from Tencent, the National University of Singapore, and The Hong Kong Polytechnic University, turns the MiniMax-H3 video generator into an interactive world model by aligning structured language instructions with temporal video latents and employing temporal attention routing to prevent control leakage, achieving precise character and camera control with only 0.199% trainable parameters.
Key Contributions
- The paper demonstrates that large video generators like MiniMax-H3 already exhibit coarse language-based control, providing a foundation for interactive world modeling.
- H3-WORLD is introduced to convert this language understanding into precise world control by representing character and camera actions as textual instructions and applying temporal attention routing, without needing dedicated action-specific modules.
- With only 8,000 gameplay samples and 0.199% trainable parameters, H3-WORLD achieves effective control, preserves generation quality, and generalizes to unseen actions and visual scenarios.
Introduction
Pretrained video generators like diffusion transformers have become powerful foundations for simulating visually rich worlds, but they lack precise action interfaces for interactive control. Prior work typically adds dedicated control modules, such as action embeddings or camera geometry, that require extra supervision and risk disrupting pretrained capabilities. The authors observe that large models like MiniMax-H3 already respond to coarse textual motion commands, and they leverage this to build H3-WORLD. The framework expresses character and camera actions as compositional text instructions aligned with video latent intervals, using temporal attention routing to maintain control precision. This lightweight adaptation (only 0.199% parameters) enables effective interactive world modeling while preserving generation quality and generalizing to unseen actions and scenes.
Method
The authors propose H3-WORLD, a framework designed to generate future video latents V1:K conditioned on an initial observation I0, a static semantic condition s, and a scheduled action sequence a1:K. The system builds upon MiniMax-H3, a pretrained bidirectional audio-video foundation model that jointly denoises the complete future horizon. The pretrained parameters θ of the backbone remain frozen, while lightweight adaptation parameters ϕ are learned specifically for action control. The conditional generation process is formulated as:
V1:K∼pθ,ϕ(V1:K∣I0,s,a1:K)MiniMax-H3 processes text, image, audio, and video tokens within a shared sequence. H3-WORLD retains the native audio stream and focuses its architectural modifications on visual action control.
As shown in the figure below, the overall architecture comprises three primary components. The semantic action interface converts character and camera controls into compositional textual instructions. Latent-aligned temporal binding associates each instruction with a specific video latent interval. Finally, single-egress routing maintains this association throughout the H3 backbone, while Low-Rank Adaptation (LoRA) learns the corresponding action-conditioned visual dynamics.
The semantic action interface translates external discrete control states into the native text-conditioning space of the model. Each control state contains recorded character and camera keys alongside a binary camera-speed flag. These keys are aggregated within the interval of each native H3 video latent to form a latent-level state. To expose the compositional structure of the control space, the authors separate character control from camera control. For the k-th video latent interval, the action is defined as ak=(uk,ck), where uk∈U represents character-control commands and ck∈C represents camera-control commands. Each control pair is mapped to a short textual instruction via clause concatenation:
pk=Tchar(uk)∥Tcam(ck)This representation preserves the factorization of the original action space. However, the training data covers only a sparse and highly imbalanced subset of the valid combinations.
The figure below summarizes the joint distribution of character and camera clauses in the training set, highlighting that the top 20 combinations account for 71.4% of all action prompts, while 52 structurally valid combinations remain entirely unseen during training.
To establish a precise correspondence between each instruction and the generated video, the authors introduce latent-aligned temporal binding. Each action prompt pk is encoded by the shared H3 encoder E and processed by a shared two-layer token refiner R to produce action tokens Ak=R(E(pk)). The token refiner employs block-diagonal attention, allowing tokens within the same action span to communicate bidirectionally while processing different action spans as separate sequences.
The initial observation I0 and static semantic condition s are jointly processed to produce static semantic tokens S, while a visual VAE maps I0 to a first-frame condition C0. These visual conditions and generation targets are packed into a single sequence:
X=[S;A1;…;AK;C0;V1;…;VK;P]where P denotes masked padding tokens. Mirrored temporal positions are assigned to the action spans such that τ(Ak)=τ(Vk)−Δ for Δ>0. This construction preserves the text-before-video ordering of the pretrained model and provides a consistent temporal alignment cue.
To restrict information flow and prevent action spans from communicating directly with unmatched video latents during bidirectional self-attention, the authors implement single-egress routing. A deterministic routing mask ensures that when an action span Ak serves as an attention key, it can only be read by tokens within the same action span and its matched video latent Vk. When Ak serves as a query, it retains access to the static context, first-frame condition, native audio context, its own tokens, and the matched video latent, while access to other spans is masked. All video latent spans retain the original bidirectional attention pattern, allowing visual effects to propagate through video-to-video attention for motion continuity.
LoRA is utilized to learn the action-conditioned transformations along these permitted routes. Low-rank updates are applied to the QKV and output projections in the H3 self-attention blocks, as well as to the two-layer token refiner. The H3 backbone, encoder, visual VAE, and all remaining components remain frozen, and the training process retains the native H3 denoising objective without introducing additional learnable parameters for the routing mask or span partition.
Experiment
The evaluation uses gameplay clips from ABot-World-Explorer-500h, training LoRA adapters on H3 and comparing against frozen pretrained and direct action-conditioning variants. Experiments show that LoRA adaptation enables temporally precise control over camera and character motion, while pretrained H3 only follows coarse global instructions and per-latent interfaces without adaptation remain unresponsive. The text-based action interface outperforms direct feature conditioning, and the adapted model generalizes compositionally to unseen action combinations and visually to out-of-distribution scenes while preserving scene layout and style.