Returns a dictionary with the state of the encoder.
Source code in sorix/preprocessing/encoders.py
| def state_dict(self):
"""Returns a dictionary with the state of the encoder."""
return {k: v for k, v in self.__dict__.items() if not k.startswith('_')}
|