Views
No views yet
tencent/HY-World-2.0
(specifically the HY-WorldMirror-2.0/ subfolder), cast from fp32 to
bfloat16 for faster download and load on consumer GPUs. Selected
numerically-critical layers are kept in fp32 to match the upstream
inference contract.tencent/HY-World-2.0/HY-WorldMirror-2.0/:model.safetensors has been cast from float32 to bfloat16 for
every floating-point tensor except those matching the upstream
_collect_fp32_critical_modules contract (any *.fc2.weight /
*.fc2.bias in MLP blocks, and any *.scratch.output_conv2.* inside
the DPT head). Those tensors are preserved as float32.config.json is unmodified from upstream.tencent/HY-World-2.0/HY-WorldMirror-2.0/.LICENSE in this repository for the full
text.Tencent HY-WORLD 2.0 is licensed under the Tencent HY-WORLD 2.0 Community License, Copyright © 2025 Tencent. All Rights Reserved.
| File | Size | Description |
|---|---|---|
model.safetensors | 3.27 GB | bf16 + selective fp32 weights |
config.json | 842 B | Model constructor kwargs (unmodified upstream) |
LICENSE | 16.5 KB | Full text of the Tencent HY-WORLD 2.0 Community License |
ComfyUI-HYWM2:1from huggingface_hub import snapshot_download
2local_dir = snapshot_download(
3 "apozz/hy-worldmirror-2-bf16",
4 allow_patterns=["model.safetensors", "config.json"],
5)WorldMirrorPipeline:1from hyworld2.worldrecon.pipeline import WorldMirrorPipeline
2pipeline = WorldMirrorPipeline.from_pretrained(
3 "apozz/hy-worldmirror-2-bf16",
4 subfolder="", # files at repo root, not in HY-WorldMirror-2.0/
5 enable_bf16=True,
6)