diff --git a/nncf/api/compression.py b/nncf/api/compression.py index a2f49bf9b54..5040036b452 100644 --- a/nncf/api/compression.py +++ b/nncf/api/compression.py @@ -25,6 +25,7 @@ @api() class CompressionLoss(ABC): """ + TEST Used to calculate the additional loss to be added to the base loss during the training process. It uses the model graph to measure variables and activations values of the layers during the loss construction. For example, the $L_0$-based @@ -52,6 +53,7 @@ def get_state(self) -> Dict[str, Any]: """ Returns the compression loss state. """ + pass def __call__(self, *args, **kwargs) -> Any: """