in realbook/layers/signal.py [0:0]
def get_config(self) -> Dict[str, Any]:
config: Dict[str, Any] = super().get_config().copy()
config.update(
{
"dtypes_type": self.dtypes_type,
"fft_length": self.fft_length,
"window_length": self.window_length,
"hop_length": self.hop_length,
"window_fn": self.window_fn,
"center": self.center,
}
)
return config