Views
No views yet

1model/
2├── README.md
3├── assets/
4│ └── main_page.png
5├── before_stage1/ # Base checkpoints before stage-1 training
6│ ├── Wan2p1_1p3B-FunContro-GigaRobo-alpha-diffusers/
7│ ├── Wan2p1_1p3B-FunControl-diffusers/
8│ └── Wan2p2_5B-FunControl-diffusers/
9├── stage1/ # Stage-1 fine-tuned checkpoints
10│ ├── nano/ # small (1.3B) variant
11│ └── pro/ # large (5B) variant
12└── stage2_distill/ # Stage-2 distilled checkpoints
13 └── ...| Stage | Name | Path | Notes |
|---|---|---|---|
| Open Source | WAN 2.1 1.3B FunControl | Wan2.1-Fun-1.3B-Control | Open-source model. |
| Open Source | WAN 2.2 5B FunControl | Wan2.2-Fun-5B-Control | Open-source model. |
| Before Stage 1 | GigaRobo Alpha Diffusers | before_stage1/Wan2p1_1p3B-FunContro-GigaRobo-alpha-diffusers/ | Pretrained on Giga dataset, then converted to Diffusers. |
| Before Stage 1 | WAN 2.1 1.3B Diffusers | before_stage1/Wan2p1_1p3B-FunControl-diffusers/ | Vanilla Diffusers-converted checkpoint. |
| Before Stage 1 | WAN 2.2 5B Diffusers | before_stage1/Wan2p2_5B-FunControl-diffusers/ | Vanilla Diffusers-converted checkpoint. |
| Stage 1 | Nano (1.3B) | stage1/nano/ | Stage-1 fine-tuned from the 1.3B branches. |
| Stage 1 | Pro (5B) | stage1/pro/ | Stage-1 fine-tuned from the 5B branch. |
| Stage 2 | Nano Distill | 🚧 Coming soon | 🚧 Coming soon. |
| Stage 2 | Pro Distill | 🚧 Coming soon | 🚧 Coming soon. |
nano / pro) contains two released artifacts: a full Diffusers-format checkpoint and a scene LoRA checkpoint.1stage1/{nano,pro}/
2├── Giga-World-1-*-stage1_final-diffusers/ # full Diffusers checkpoint
3│ ├── model_index.json # Diffusers pipeline index
4│ ├── transformer/ # DiT / video transformer weights
5│ ├── vae/ # VAE weights
6│ ├── text_encoder/ # text encoder weights
7│ ├── tokenizer/ # tokenizer files
8│ ├── scheduler/ # scheduler config
9│ ├── image_encoder/ # image encoder weights
10│ └── image_processor/ # image preprocessing config
11└── Giga-World-1-*-stage1_scene_lora/ # scene LoRA checkpoint
12 ├── pytorch_lora_weights.safetensors # LoRA weights for inference
13 ├── transformer_full/ # full transformer export
14 ├── transformer_partial.pth # partial transformer checkpoint
15 ├── pytorch_model/ # training checkpoint shards
16 ├── distributed_checkpoint/ # distributed training checkpoint
17 ├── scheduler.bin # training scheduler state
18 ├── latest # latest checkpoint pointer
19 ├── zero_to_fp32.py # ZeRO checkpoint conversion script
20 └── random_states_*.pkl # training random stateshttps://huggingface.co/GigaAI-Research/Giga-World-11# Install Hugging Face Hub
2pip install huggingface_hub1# Download the model snapshot via Hugging Face Hub
2from huggingface_hub import snapshot_download
3
4model_dir = snapshot_download(repo_id='GigaAI-Research/Giga-World-1')1git lfs install
2git clone https://huggingface.co/GigaAI-Research/Giga-World-11@article{gigaworld2025,
2 title = {GigaWorld-1: A Roadmap to World Models for Robot Policy Evaluation},
3 author = {{GigaAI}},
4 journal = {arXiv preprint},
5 year = {2025},
6 eprint = {2607.02642},
7 archivePrefix = {arXiv},
8 primaryClass = {cs.CV}
9}