Tencent Hunyuan HY-World 2.0: 3D world models, WorldMirror 2.0, and open-source plan
HY-World 2.0 from Tencent Hunyuan: multi-modal 3D worlds (3DGS/meshes) vs pixel-only video world models, WorldMirror 2.0 reconstruction, pipeline roadmap—GitHub, Hugging Face, install notes.
HY-World 2.0 is TencentHunyuan’s open multi-modal world model stack: it ingests text, single-view images, multi-view images, and video, and targets persistent 3D outputs—meshes, 3D Gaussian Splattings (3DGS), and point clouds—not just another mp4. The team positions it as “building a playable world” versus “watching a movie that ends.”
This post summarizes the public GitHub README and docs as of early May 2026; weights, APIs, and benchmarks should be re-checked on the repo and DOCUMENTATION.md before you freeze a reproduction.
Technical report, WorldMirror 2.0 code & checkpoints per README April 16, 2026 news block
Not open yet
Full world generation inference, HY-Pano 2.0, WorldStereo 2.0, WorldNav (all listed coming soon)
Two capabilities: generation vs reconstruction
World generation (per README): turn text or a single image into a navigable scene via the staged pipeline above—panorama, planning, stereo expansion, then composition with WorldMirror 2.0 and 3DGS training.
World reconstruction: WorldMirror 2.0 is the feed-forward workhorse—one forward pass estimates depth, surface normals, camera parameters, point clouds, and 3DGS-style attributes from multi-view stills or casual video, with flexible resolution (README cites 50K–500K pixels).
Architecture (high level)
The README diagrams a systematic pipeline for generation: HY-Pano 2.0 → WorldNav → WorldStereo 2.0 → WorldMirror 2.0 + splatting—turning language or a single rgb input into a composed 3D world. Technical details live in their report (linked from the repo); this article does not reproduce proprietary figures.
Open-source plan (checklist from README)
Item
Status in README
Technical report
Released
WorldMirror 2.0 code & checkpoints
Released
Full world generation inference (WorldNav + composition)
Planned
HY-Pano 2.0 weights & code
Planned (HunyuanWorld 1.0 noted as interim)
WorldStereo 2.0 weights & code
Planned (WorldStereo as interim)
WorldNav
Planned
Treat checkboxes as intent; license, export rules, and GPUsupport still gate real adoption.
Getting started with WorldMirror 2.0
The README’s minimal Python shape:
python
from hyworld2.worldrecon.pipeline import WorldMirrorPipeline
pipeline = WorldMirrorPipeline.from_pretrained('tencent/HY-World-2.0')
result = pipeline('path/to/images')
Optional priors (camera / depth) are passed as paths; the repo points to a prior preparation guide in DOCUMENTATION.md.
Multi-GPU uses torchrun with --use_fsdp --enable_bf16. Important operational constraint: input image count ≥ GPU count (e.g. 8 images for 8 processes).
Gradio:
bash
python -m hyworld2.worldrecon.gradio_app
Environment:condaPython 3.10, CUDA 12.4, torch 2.4.0+cu124 wheels, pip install -r requirements.txt, and FlashAttention (v3 build or pip install flash-attn path).
Benchmarks (as reported—verify in the report)
The README includes tables for:
WorldStereo 2.0 — camera metrics and single-view-generated reconstruction on Tanks-and-Temples / MipNeRF360 vs baselines such as SEVA, Gen3C, Lyra, FlashWorld.
WorldMirror 2.0 — point map accuracy / completeness on 7-Scenes, NRGBD, DTU at low / medium / high inference resolutions, with and without prior injection; comparisons include Pow3R and MapAnything under varying prior conditions.
Rule of thumb: read the technical report for protocol detail—leaderboard numbers without split / preprocessing context mislead buyers and paper reviewers alike.
Why teams care (strategic, not hype)
Game / sim / robotics:Persistent 3D fits Unreal / Unity / Isaac pipelines better than frame dumps. One-timereconstruction cost plus cheapreal-timerendering matches interactiveRL and digital-twin workflows—if export and license terms align.
Caution:World generationend-to-end is not fully open yet; most hackers will live in WorldMirrorreconstruction until WorldNav / HY-Pano 2.0 / WorldStereo 2.0ship.
Model hub: README cites WorldMirrorPipeline.from_pretrained('tencent/HY-World-2.0') — confirm the exact Hugging Face card from the repo’s Model Zoo table
@article{hyworld22026,
title={HY-World 2.0: A Multi-Modal World Model for Reconstructing, Generating, and Simulating 3D Worlds},
author={Team HY-World},
journal={arXiv preprint},
year={2026}
}
HY-World 2.0 is a fast-moving research release. Treat this explainx.ai article as May 6, 2026 orientation text—validate LICENSE, weights, and CLI flags on the official repository before production use.