Views
No views yet
rlwf-ckpt/
├── README.md
├── LICENSE
├── mimicgen-core-14b-lora-step80000/ # LoRA fine-tune, ~217 MB
└── mimicgen-core-14b-full-step46000/ # full fine-tune, 10-shard ~47 GBmimicgen-core-14b-lora-step80000/groot.vla.model.dreamzero.base_vla.VLA)q,k,v,o,ffn.0,ffn.2groot.vla.model.dreamzero.action_head.wan_flow_matching_action_tf.WANPolicyHead)mimicgen-core-14b-full-step46000/model-{1..10}-of-00010.safetensors)1from stable_worldmodel.wm.utils import load_pretrained
2# either subdir works the same way:
3model = load_pretrained(
4 "MinghaoFu/rlwf-ckpt/mimicgen-core-14b-lora-step80000",
5 extra_args={"torch_dtype": "bfloat16"},
6)1from safetensors.torch import load_file
2state_dict = load_file("model.safetensors")1import json
2from safetensors.torch import load_file
3
4with open("model.safetensors.index.json") as f:
5 index = json.load(f)
6state_dict = {}
7for shard in sorted(set(index["weight_map"].values())):
8 state_dict.update(load_file(shard))experiment_cfg/conf.yaml of each subdir.global_step*/) — stripped to keep the download
small. If you want to resume training instead of just loading for inference,
ping me; the optimizer shards are kept separately.rng_state_*.pth — same reason.latest text file — points to a path inside global_step*/, irrelevant
without the optimizer state.LICENSE). The underlying Wan2.1-I2V-14B-480P base model has its own
Apache-2.0 license. DreamZero architecture follows the original
authors' release terms; this repo only redistributes the fine-tuned weights.