Skip to content

ZeRO-3 Partitioned Checkpoint Dimensionality Collapse

The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank.

Quick answer

The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format.

Symptom
size mismatch for *: copying a param with shape torch.Size([1]) from checkpoint, the shape in current model is torch.Size([X, Y])
Root cause
The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank.
Recommended fix
Use the DeepSpeed universal checkpoint converter. - python ds_to_universal.py --input_dir /path --output_dir /path
How Denpex helps
Denpex matches ZeRO-3 Partitioned Checkpoint Dimensionality Collapse across every rank in a distributed run and reports which rank failed first, so you act on the initiating node instead of the loudest one.
Model#deepspeed#user-report

What this failure is

ZeRO-3 Partitioned Checkpoint Dimensionality Collapse is a Model failure seen during ML training runs. The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank. Common tags: Deepspeed, User Report.

Live diagnosis, no signup

Is this what broke your run? Paste your log.

You're reading about ZeRO-3 Partitioned Checkpoint Dimensionality Collapse. Paste your own crash log or traceback below and get the real root cause for YOUR run, not this generic entry. No account, no card. Logs are masked at ingress and never saved to account history.

training_logs.txt
No log to hand? Try one:

3 free diagnoses/day

Want 14 days on the Scale plan?

Request an evaluation code. A verified workplace organization activates up to 50 diagnoses a day, alerts, history, and follow-up questions. No credit card or automatic subscription.

Evaluate one incident

Why it happens (the mechanism)

The user assumes the checkpoint file was corrupted during disk write or network transfer due to its small size and shape mismatch. They will often attempt to repair the file system or adjust I/O timeouts.

What you'll observe

  • Training process crashes immediately upon attempting to resume from a checkpoint.
  • Checkpoint files on disk appear abnormally small (a few kilobytes instead of gigabytes).

Common symptoms and what they mean

SymptomWhy it happens
size mismatch for *: copying a param with shape torch.Size([1]) from checkpoint, the shape in current model is torch.Size([X, Y])The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank.
size mismatch for *: copying a param with shape torch.Size([0]) from checkpointThe parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank.

Which systems are affected

  • DeepSpeed
  • PyTorch

How to confirm this is the problem

Use this checklist to test the hypothesis against a small reproduction. No single line proves the root cause, so preserve the preceding events and compare one variable at a time.

  • Check the size of the `pytorch_model.bin` files in the checkpoint directory.
  • Verify the DeepSpeed configuration JSON to see if `stage3_gather_16bit_weights_on_model_save` is enabled.

Searchable error signature

search key
size mismatch for *: copying a param with shape torch.Size([1]) from checkpoint, the shape in current model is torch.Size([X, Y])
size mismatch for *: copying a param with shape torch.Size([0]) from checkpoint

Use this text as a lookup key in logs and upstream issue trackers. It is not presented as a captured customer log. Confirm the cause from your own preceding events, versions, configuration and the cited references.

The fix and the prevention pattern

The root cause is on this page and stays free. A free account adds the exact remediation steps, saved history, and the fix on every entry in the encyclopedia.

Sign up free. Unlock the full analysis

No credit card. Daily allowance follows verified trust tier. Instant access.

Diagnose this failure in VS Code

Select the traceback or open the failed terminal, then run Denpex locally to see the initiating rank, collateral failures, exact fix, and verification command without uploading the log.

Install the free VS Code extension

DeepSpeed errors in context

DeepSpeed changes when parameters, gradients and optimizer state are created, partitioned, gathered and offloaded. The hub separates ZeRO, memory, checkpoint and pipeline failures by lifecycle phase.

Compare every deepspeed error side by side

Root cause

  • The parameters were partitioned across GPUs using ZeRO Stage 3, and the checkpoint saving mechanism did not consolidate them back to the universal format. The saved state_dict contains only the local shard of the root rank.

The fix and how to prevent it

Evaluate Denpex on your own logs

Request a Scale evaluation code. A verified workplace organization activates 14 days with up to 50 diagnoses a day. Every account keeps its current diagnosis allowance and gets a verification path. No card or automatic subscription.

We send a single-use code tied to that address. Static provider and TLD rules do not reject valid addresses. Account trust determines the benefit after signup.

Don't just read the fix, diagnose your run

The encyclopedia tells you what went wrong. Denpex tells you what went wrong in YOUR training run. With your logs, your config, and your stack.