simpleml.models.base_model

Module Contents

Classes

AbstractModel

Abstract Base class for all Model objects. Defines the required

LibraryModel

Main model class needs to be initialize-able in order to play nice with

Model

Base class for all Model objects. Defines the required

simpleml.models.base_model.LOGGER[source]
simpleml.models.base_model.__author__ = Elisha Yadgaran[source]
class simpleml.models.base_model.AbstractModel(has_external_files=True, external_model_kwargs=None, params=None, **kwargs)[source]

Bases: future.utils.with_metaclass()

Abstract Base class for all Model objects. Defines the required parameters for versioning and all other metadata can be stored in the arbitrary metadata field

Also outlines the expected subclass methods (with NotImplementedError). Design choice to not abstract unified API across all libraries since each has a different internal mechanism

params: model parameter metadata for easy insight into hyperparameters across trainings feature_metadata: metadata insight into resulting features and importances

Need to explicitly separate passthrough kwargs to external models since most do not support arbitrary **kwargs in the constructors

__abstract__ = True[source]
feature_metadata[source]
object_type = MODEL[source]
params[source]
abstract _create_external_model(self, **kwargs)[source]

Abstract method for each subclass to implement

should return the desired model object

abstract _fit(self)[source]

Abstract method to act as a placeholder. Inheriting classes MUST instantiate this method to manage the fit operation. Intentionally not abstracting function because each library internally configures a little differently

_hash(self)[source]
Hash is the combination of the:
  1. Pipeline

  2. Model

  3. Params

  4. Config

May only include attributes that exist at instantiation. Any attribute that gets calculated later will result in a race condition that may return a different hash depending on when the function is called

_predict(self, X, **kwargs)[source]

Separate out actual predict call for optional overwrite in subclasses

add_pipeline(self, pipeline)[source]

Setter method for pipeline used

assert_fitted(self, msg='')[source]

Helper method to raise an error if model isn’t fit

assert_pipeline(self, msg='')[source]

Helper method to raise an error if pipeline isn’t present and configured

property external_model(self)[source]

All model objects are going to require some filebase persisted object

Wrapper around whatever underlying class is desired (eg sklearn or keras)

fit(self, **kwargs)[source]

Pass through method to external model after running through pipeline

fit_predict(self, **kwargs)[source]

Wrapper for fit and predict methods

property fitted(self)[source]
get_feature_metadata(self, **kwargs)[source]

Abstract method for each model to define

Should return a dict of feature information (importance, coefficients…)

get_labels(self, dataset_split=None)[source]

Wrapper method to return labels from dataset

get_params(self, **kwargs)[source]

Pass through method to external model

load(self, **kwargs)[source]

Extend main load routine to load relationship class

predict(self, X, transform=True, **kwargs)[source]

Pass through method to external model after running through pipeline :param transform: bool, whether to transform input via pipeline

before predicting, default True

save(self, **kwargs)[source]

Extend parent function with a few additional save routines

  1. save params

  2. save feature metadata

score(self, X, y=None, **kwargs)[source]

Pass through method to external model

set_params(self, **params)[source]

Pass through method to external model

transform(self, *args, **kwargs)[source]

Run input through pipeline – only method that should reference the pipeline relationship directly (gates the connection point for easy extension in the future)

class simpleml.models.base_model.LibraryModel(has_external_files=True, external_model_kwargs=None, params=None, **kwargs)[source]

Bases: simpleml.models.base_model.Model

Main model class needs to be initialize-able in order to play nice with database persistence and loading. This class is the in between that defines the expected methods for each extended library.

Examples: Scikit-learn estimators –> SklearnModel(LibraryModel): … Keras estimators –> KerasModel(LibraryModel): … PyTorch … …

Need to explicitly separate passthrough kwargs to external models since most do not support arbitrary **kwargs in the constructors

abstract _fit(self)[source]

Abstract method to act as a placeholder. Inheriting classes MUST instantiate this method to manage the fit operation. Intentionally not abstracting function because each library internally configures a little differently

class simpleml.models.base_model.Model(has_external_files=True, external_model_kwargs=None, params=None, **kwargs)[source]

Bases: simpleml.models.base_model.AbstractModel

Base class for all Model objects. Defines the required parameters for versioning and all other metadata can be stored in the arbitrary metadata field

pipeline_id: foreign key relation to the pipeline used to transform input to the model

(training is also dependent on originating dataset but scoring only needs access to the pipeline)

Need to explicitly separate passthrough kwargs to external models since most do not support arbitrary **kwargs in the constructors

__table_args__[source]
__tablename__ = models[source]
pipeline[source]
pipeline_id[source]