ba4be087d5
Create PR to main with cherry-pick from release / cherry-pick (push) Failing after 0s
CICD NeMo / pre-flight (push) Failing after 0s
CICD NeMo / configure (push) Has been skipped
Build, validate, and release Neural Modules / pre-flight (push) Failing after 1s
CICD NeMo / code-linting (push) Has been skipped
Build, validate, and release Neural Modules / release (push) Has been skipped
Build, validate, and release Neural Modules / release-summary (push) Has been cancelled
CICD NeMo / cicd-test-container-build (push) Has been cancelled
CICD NeMo / cicd-import-tests (push) Has been cancelled
CICD NeMo / L0_Setup_Test_Data_And_Models (push) Has been cancelled
CICD NeMo / cicd-main-unit-tests (push) Has been cancelled
CICD NeMo / cicd-main-speech (push) Has been cancelled
CICD NeMo / Nemo_CICD_Test (push) Has been cancelled
CICD NeMo / Coverage (e2e) (push) Has been cancelled
CICD NeMo / Coverage (unit-test) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
CICD NeMo / cicd-wait-in-queue (push) Has been cancelled
77 lines
3.3 KiB
Python
77 lines
3.3 KiB
Python
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import torch
|
|
from torch.distributions.categorical import Categorical
|
|
from torchmetrics import Metric
|
|
|
|
__all__ = ['Perplexity']
|
|
|
|
|
|
class Perplexity(Metric):
|
|
"""
|
|
This class computes mean perplexity of distributions in the last dimension of inputs. It is a wrapper around
|
|
``torch.distributions.Categorical.perplexity`` method. You have to provide either
|
|
``probs`` or ``logits`` to the :meth:`update` method. The class computes perplexities for distributions passed to
|
|
:meth:`update` method in ``probs`` or ``logits`` arguments and averages the perplexities. Reducing results between
|
|
all workers is done via SUM operations.
|
|
See the `TorchMetrics in PyTorch Lightning guide
|
|
<https://lightning.ai/docs/torchmetrics/stable/pages/lightning.html>`_
|
|
for the metric usage instructions.
|
|
|
|
Args:
|
|
dist_sync_on_step:
|
|
Synchronize metric state across processes at each ``forward()``
|
|
before returning the value at the step.
|
|
process_group:
|
|
Specify the process group on which synchronization is called. default: ``None`` (which selects the entire
|
|
world)
|
|
validate_args:
|
|
If ``True`` values of :meth:`update` method parameters are checked. ``logits`` has to not contain NaNs and
|
|
``probs`` last dim has to be valid probability distribution.
|
|
"""
|
|
|
|
full_state_update = True
|
|
|
|
def __init__(self, dist_sync_on_step=False, process_group=None, validate_args=True):
|
|
super().__init__(dist_sync_on_step=dist_sync_on_step, process_group=process_group)
|
|
self.validate_args = validate_args
|
|
self.add_state('perplexities_sum', torch.tensor(0.0, dtype=torch.float64), dist_reduce_fx='sum')
|
|
# Total number of distributions seen since last reset
|
|
self.add_state('num_distributions', torch.tensor(0, dtype=torch.int64), dist_reduce_fx='sum')
|
|
|
|
def update(self, probs=None, logits=None):
|
|
"""
|
|
Updates :attr:`perplexities_sum` and :attr:`num_distributions`.
|
|
Args:
|
|
probs: A ``torch.Tensor`` which innermost dimension is valid probability distribution.
|
|
logits: A ``torch.Tensor`` without NaNs.
|
|
"""
|
|
d = Categorical(
|
|
None if probs is None else probs.detach(),
|
|
None if logits is None else logits.detach(),
|
|
validate_args=self.validate_args,
|
|
)
|
|
ppl = d.perplexity()
|
|
self.num_distributions += ppl.numel()
|
|
self.perplexities_sum += ppl.sum()
|
|
|
|
def compute(self):
|
|
"""
|
|
Returns perplexity across all workers and resets to 0 :attr:`perplexities_sum` and :attr:`num_distributions`.
|
|
"""
|
|
if self.num_distributions.eq(0):
|
|
return None
|
|
return self.perplexities_sum / self.num_distributions
|