Skip to content

CrossEntropyLoss NaN on Pure Ignore-Index Batch

When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0). This results in 0/0, which is NaN.

Quick answer

When using `torch.

Symptom
RuntimeError: unscale_() expected input to not be nan
Root cause
When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0).
Recommended fix
Skip the batch or handle the reduction manually valid_mask = (targets != -100) if not valid_mask.any(): return torch.tensor(0.0, requires_grad=True) else: return criterion(outputs, targets) Bypasses the loss calculation when there are no valid targets to evaluate, preventing the division by zero.
How Denpex helps
Denpex matches CrossEntropyLoss NaN on Pure Ignore-Index Batch 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.
Loss#Empty Batch Division

What this failure is

CrossEntropyLoss NaN on Pure Ignore-Index Batch is a Loss failure seen during ML training runs. When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0). This results in 0/0, which is NaN. Common tags: Empty Batch Division.

Live diagnosis, no signup

Is this what broke your run? Paste your log.

You're reading about CrossEntropyLoss NaN on Pure Ignore-Index Batch. 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)

Since it only happens on specific batches based on data distribution, it looks like a corrupted data sample rather than a PyTorch edge case.

What you'll observe

  • Loss equals exactly nan
  • RuntimeError: unscale_() expected input to not be nan

Common symptoms and what they mean

SymptomWhy it happens
Training occasionally outputs a single `nan` loss on specific batches, often highly padded batches or fully masked out labels.When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0). This results in 0/0, which is NaN.
Subsequent training continues, but if gradients are unscaled and stepped, weights become corrupted.When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0). This results in 0/0, which is NaN.

Which systems are affected

  • 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 unique values of `target` tensors when loss is NaN.
  • Add a condition: `if (targets != -100).sum() == 0: print("Empty batch detected")`

Searchable error signature

search key
RuntimeError: unscale_() expected input to not be nan

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

Root cause

  • When using `torch.nn.CrossEntropyLoss(ignore_index=-100, reduction='mean')`, if every target in the batch happens to equal `-100`, PyTorch calculates the sum of the valid losses (which is 0) and divides by the number of valid targets (which is also 0). This results in 0/0, which is NaN.

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.