tensorplay.nn.functional.kl_div
- tensorplay.nn.functional.kl_div(input: TensorBase, target: TensorBase, size_average=None, reduce=None, reduction: str = 'mean', log_target: bool = False) TensorBase[source]
Compute the KL Divergence loss.
inputholds log-probabilities; seeKLDivLoss. Note thatreduction='mean'divides by the number of elements and does not return the true KL divergence value — use'batchmean'.

