Source code for pypots.anomaly_detection.fedformer.model

"""
The implementation of FEDformer for the partially-observed time-series anomaly detection task.

"""

# Created by Yiyuan Yang <yyy1997sjz@gmail.com>
# License: BSD-3-Clause

from typing import Union, Optional

import torch
from torch.utils.data import DataLoader

from ..base import BaseNNDetector
from ...data.checking import key_in_data_set
from ...imputation.fedformer.core import _FEDformer
from ...imputation.saits.data import DatasetForSAITS
from ...nn.modules.loss import Criterion, MAE, MSE
from ...optim.adam import Adam
from ...optim.base import Optimizer


[docs] class FEDformer(BaseNNDetector): """The PyTorch implementation of the FEDformer model for the anomaly detection task. FEDformer was originally proposed by Zhou et al. in :cite:`zhou2022fedformer`. Parameters ---------- n_steps : int Number of time steps in the time-series data sample. n_features : int Number of features in the time-series data sample. anomaly_rate : float Estimated anomaly rate in the dataset, within (0, 1). Used for thresholding. n_layers : int Number of layers in the FEDformer. n_heads : int Number of heads in the multi-head attention mechanism. d_model : int Dimension of model input and output features. d_ffn : int Dimension of feed-forward network. moving_avg_window_size : int Window size of moving average module. dropout : float, optional Dropout rate. Default is 0. version : str, optional FEDformer version: "Wavelets" or "Fourier". Default is "Fourier". modes : int, optional Number of frequency modes. Default is 32. mode_select : str, optional Mode selection strategy: "random" or "low". Default is "random". ORT_weight : float, optional Weight for ORT loss term. MIT_weight : float, optional Weight for MIT loss term. batch_size : int, optional Training batch size. Default is 32. epochs : int, optional Total training epochs. Default is 100. patience : int, optional Patience for early stopping. Disabled if None. training_loss : Criterion or type, optional Loss function during training. Default is MAE. validation_metric : Criterion or type, optional Metric function during validation. Default is MSE. optimizer : Optimizer or type, optional Optimizer. Default is custom Adam optimizer. num_workers : int, optional Number of subprocesses for data loading. device : str, torch.device, or list, optional Device(s) for training and inference. saving_path : str, optional Path to save model checkpoints and logs. model_saving_strategy : str or None, optional Checkpoint saving strategy: {None, "best", "better", "all"}. verbose : bool, optional Whether to print training logs. """ def __init__( self, n_steps: int, n_features: int, anomaly_rate: float, n_layers: int, d_model: int, n_heads: int, d_ffn: int, moving_avg_window_size: int, dropout: float = 0, version="Fourier", modes=32, mode_select="random", ORT_weight: float = 1, MIT_weight: float = 1, batch_size: int = 32, epochs: int = 100, patience: Optional[int] = None, training_loss: Union[Criterion, type] = MAE, validation_metric: Union[Criterion, type] = MSE, optimizer: Union[Optimizer, type] = Adam, num_workers: int = 0, device: Optional[Union[str, torch.device, list]] = None, saving_path: str = None, model_saving_strategy: Optional[str] = "best", verbose: bool = True, ): # Initialize base detector with anomaly rate and basic configs super().__init__( anomaly_rate=anomaly_rate, training_loss=training_loss, validation_metric=validation_metric, batch_size=batch_size, epochs=epochs, patience=patience, num_workers=num_workers, device=device, saving_path=saving_path, model_saving_strategy=model_saving_strategy, verbose=verbose, ) # Store model architecture hyperparameters self.n_steps = n_steps self.n_features = n_features self.n_layers = n_layers self.n_heads = n_heads self.d_model = d_model self.d_ffn = d_ffn self.moving_avg_window_size = moving_avg_window_size self.dropout = dropout self.version = version self.modes = modes self.mode_select = mode_select self.ORT_weight = ORT_weight self.MIT_weight = MIT_weight # Instantiate FEDformer model self.model = _FEDformer( n_steps=self.n_steps, n_features=self.n_features, n_layers=self.n_layers, d_model=self.d_model, n_heads=self.n_heads, d_ffn=self.d_ffn, moving_avg_window_size=self.moving_avg_window_size, dropout=self.dropout, version=self.version, modes=self.modes, mode_select=self.mode_select, ORT_weight=self.ORT_weight, MIT_weight=self.MIT_weight, training_loss=self.training_loss, validation_metric=self.validation_metric, ) self._send_model_to_given_device() self._print_model_size() # Initialize optimizer if isinstance(optimizer, Optimizer): self.optimizer = optimizer else: self.optimizer = optimizer() assert isinstance(self.optimizer, Optimizer) self.optimizer.init_optimizer(self.model.parameters()) def _assemble_input_for_training(self, data: list) -> dict: """ Prepares input batch for training. Returns ------- dict Dictionary containing 'X', 'missing_mask', 'X_ori', and 'indicating_mask'. """ indices, X, missing_mask, X_ori, indicating_mask = self._send_data_to_given_device(data) return { "X": X, "missing_mask": missing_mask, "X_ori": X_ori, "indicating_mask": indicating_mask, } def _assemble_input_for_validating(self, data: list) -> dict: """ Prepares input batch for validation. Returns ------- dict Same structure as training input. """ return self._assemble_input_for_training(data) def _assemble_input_for_testing(self, data: list) -> dict: """ Prepares input batch for testing (inference). Returns ------- dict Dictionary containing 'X' and 'missing_mask' only. """ indices, X, missing_mask = self._send_data_to_given_device(data) return { "X": X, "missing_mask": missing_mask, }
[docs] def fit( self, train_set: Union[dict, str], val_set: Optional[Union[dict, str]] = None, file_type: str = "hdf5", ) -> None: """ Trains the model on the given dataset. Parameters ---------- train_set : dict or str Training dataset or its file path. val_set : dict or str, optional Validation dataset. Must contain 'X_ori'. file_type : str, optional File type if data is loaded from disk. Default is "hdf5". """ self.train_set = train_set # Store training set for possible future use # Step 1: Wrap training dataset train_dataset = DatasetForSAITS(train_set, return_X_ori=False, return_y=False, file_type=file_type) train_dataloader = DataLoader( train_dataset, batch_size=self.batch_size, shuffle=True, num_workers=self.num_workers, ) # Step 2: Wrap validation dataset if provided val_dataloader = None if val_set is not None: if not key_in_data_set("X_ori", val_set): raise ValueError("val_set must contain 'X_ori' for model validation.") val_dataset = DatasetForSAITS(val_set, return_X_ori=True, return_y=False, file_type=file_type) val_dataloader = DataLoader( val_dataset, batch_size=self.batch_size, shuffle=False, num_workers=self.num_workers, ) # Step 3: Train the model self._train_model(train_dataloader, val_dataloader) # Step 4: Restore the best model weights self.model.load_state_dict(self.best_model_dict) # Step 5: Save the model if saving is enabled self._auto_save_model_if_necessary(confirm_saving=self.model_saving_strategy == "best")