SerializableModelMixin#

class SerializableModelMixin[소스]#

기반 클래스: object

Provides convenient methods for saving and loading models.

Methods

classmethod load(file_name)[소스]#

Loads a model from the file. If the loaded model is not an instance of the class whose method was called, then a warning is raised. Nevertheless, the loaded model may be a valid model.

매개변수:

file_name (str) – a file name or path to load a model from.

반환:

A loaded model.

예외 발생:

TypeError – if a loaded model is not an instance of the expected class.

반환 형식:

Any

save(file_name)[소스]#

Saves this model to the specified file. Internally, the model is serialized via dill. All parameters are saved, including a primitive instance that is referenced by internal objects. That means if a model is loaded from a file and is used, for instance, for inference, the same primitive will be used even if a cloud primitive was used.

매개변수:

file_name (str) – a file name or path where to save the model.