[docs]classDfm(AnomalyModule):"""DFM: Deep Featured Kernel Density Estimation. Args: backbone (str): Backbone CNN network layer (str): Layer to extract features from the backbone CNN pre_trained (bool, optional): Boolean to check whether to use a pre_trained backbone. pooling_kernel_size (int, optional): Kernel size to pool features extracted from the CNN. Defaults to 4. pca_level (float, optional): Ratio from which number of components for PCA are calculated. Defaults to 0.97. score_type (str, optional): Scoring type. Options are `fre` and `nll`. Defaults to "fre". nll: for Gaussian modeling, fre: pca feature reconstruction error """def__init__(self,backbone:str,layer:str,pre_trained:bool=True,pooling_kernel_size:int=4,pca_level:float=0.97,score_type:str="fre",):super().__init__()self.model:DFMModel=DFMModel(backbone=backbone,pre_trained=pre_trained,layer=layer,pooling_kernel_size=pooling_kernel_size,n_comps=pca_level,score_type=score_type,)self.embeddings:List[Tensor]=[]@staticmethod
[docs]defconfigure_optimizers()->None:# pylint: disable=arguments-differ"""DFM doesn't require optimization, therefore returns no optimizers."""returnNone
[docs]deftraining_step(self,batch,_):# pylint: disable=arguments-differ"""Training Step of DFM. For each batch, features are extracted from the CNN. Args: batch (Dict[str, Tensor]): Input batch _: Index of the batch. Returns: Deep CNN features. """embedding=self.model.get_features(batch["image"]).squeeze()# NOTE: `self.embedding` appends each batch embedding to# store the training set embedding. We manually append these# values mainly due to the new order of hooks introduced after PL v1.4.0# https://github.com/PyTorchLightning/pytorch-lightning/pull/7357self.embeddings.append(embedding)
[docs]defon_validation_start(self)->None:"""Fit a PCA transformation and a Gaussian model to dataset."""# NOTE: Previous anomalib versions fit Gaussian at the end of the epoch.# This is not possible anymore with PyTorch Lightning v1.4.0 since validation# is run within train epoch.logger.info("Aggregating the embedding extracted from the training set.")embeddings=torch.vstack(self.embeddings)logger.info("Fitting a PCA and a Gaussian model to dataset.")self.model.fit(embeddings)
[docs]defvalidation_step(self,batch,_):# pylint: disable=arguments-differ"""Validation Step of DFM. Similar to the training step, features are extracted from the CNN for each batch. Args: batch (List[Dict[str, Any]]): Input batch Returns: Dictionary containing FRE anomaly scores and ground-truth. """batch["pred_scores"]=self.model(batch["image"])returnbatch
[docs]classDfmLightning(Dfm):"""DFM: Deep Featured Kernel Density Estimation. Args: hparams (Union[DictConfig, ListConfig]): Model params """def__init__(self,hparams:Union[DictConfig,ListConfig])->None:super().__init__(backbone=hparams.model.backbone,layer=hparams.model.layer,pooling_kernel_size=hparams.model.pooling_kernel_size,pca_level=hparams.model.pca_level,score_type=hparams.model.score_type,)self.hparams:Union[DictConfig,ListConfig]# type: ignoreself.save_hyperparameters(hparams)