in realbook/layers/signal.py [0:0]
def get_config(self) -> Dict[str, Any]:
config: Dict[str, Any] = super().get_config().copy()
config.update(
{
"n_mels": self.n_mels,
"lower_edge_hertz": self.lower_edge_hertz,
"upper_edge_hertz": self.upper_edge_hertz,
"htk": self.htk,
"sample_rate": self.sample_rate,
"normalization": self.normalization,
}
)
return config