WeeklyFourier.model_parametrized_name#
- classmethod WeeklyFourier.model_parametrized_name(params)#
 Compute the class name for parametrizations of generic classes.
This method can be overridden to achieve a custom naming scheme for generic BaseModels.
- Args:
 - params: Tuple of types of the class. Given a generic class
 Modelwith 2 type variables and a concrete modelModel[str, int], the value(str, int)would be passed toparams.
- Returns:
 String representing the new class where
paramsare passed toclsas type variables.- Raises:
 TypeError: Raised when trying to generate concrete names for non-generic models.