Source code for api.predictor

import dill
from typing import Dict, Optional

import pandas as pd
from lightwood.api.types import ModelAnalysis


# Interface that must be respected by predictor objects generated from JSON ML and/or compatible with Mindsdb
[docs]class PredictorInterface: """ Abstraction of a Lightwood predictor. The ``PredictorInterface`` encompasses how Lightwood interacts with the full ML pipeline. Internally, The ``PredictorInterface`` class must have several expected functions: - ``analyze_data``: Peform a statistical analysis on the unprocessed data; this helps inform downstream encoders and mixers on how to treat the data types. - ``preprocess``: Apply cleaning functions to each of the columns within the dataset to prepare them for featurization - ``split``: Split the input dataset into a train/dev/test set according to your splitter function - ``prepare``: Create and, if necessary, train your encoders to create feature representations from each column of your data. - ``featurize``: For input, pre-processed data, create feature vectors - ``fit``: Train your mixer models to yield predictions from featurized data - ``analyze_ensemble``: Evaluate the quality of fit for your mixer models - ``adjust``: Incorporate new data to update pre-existing model(s). For simplification, we offer an end-to-end approach that allows you to input raw data and follow every step of the process until you reach a trained predictor with the ``learn`` function: - ``learn``: An end-to-end technique specifying how to pre-process, featurize, and train the model(s) of interest. The expected input is raw, untrained data. No explicit output is provided, but the Predictor object will "host" the trained model thus. You can also use the predictor to now estimate new data: - ``predict``: Deploys the chosen best model, and evaluates the given data to provide target estimates. - ``test``: Similar to predict, but user also passes an accuracy function that will be used to compute a metric with the generated predictions. - ``save``: Saves the Predictor object for further use. The ``PredictorInterface`` is created via J{ai}son's custom code creation. A problem inherits from this class with pre-populated routines to fill out expected results, given the nature of each problem type. """ # noqa model_analysis: ModelAnalysis = None def __init__(self): pass
[docs] def analyze_data(self, data: pd.DataFrame) -> None: """ Performs a statistical analysis on the data to identify distributions, imbalanced classes, and other nuances within the data. :param data: Data used in training the model(s). """ # noqa pass
[docs] def preprocess(self, data: pd.DataFrame) -> pd.DataFrame: """ Cleans the unprocessed dataset provided. :param data: (Unprocessed) Data used in training the model(s). :returns: The cleaned data frame """ # noqa pass
[docs] def split(self, data: pd.DataFrame) -> Dict[str, pd.DataFrame]: """ Categorizes the data into a training/testing split; if data is a classification problem, will stratify the data. :param data: Pre-processed data, but generically any dataset to split into train/dev/test. :returns: Dictionary containing training/testing fraction """ # noqa pass
[docs] def prepare(self, data: Dict[str, pd.DataFrame]) -> None: """ Prepares the encoders for each column of data. :param data: Pre-processed data that has been split into train/test. Explicitly uses "train" and/or "dev" in preparation of encoders. :returns: Nothing; prepares the encoders for learned representations. """ # noqa
[docs] def featurize(self, split_data: Dict[str, pd.DataFrame]): """ Provides an encoded representation for each dataset in ``split_data``. Requires `self.encoders` to be prepared. :param split_data: Pre-processed data from the dataset, split into train/test (or any other keys relevant) :returns: For each dataset provided in ``split_data``, the encoded representations of the data. """ # noqa pass
[docs] def fit(self, enc_data: Dict[str, pd.DataFrame]) -> None: """ Fits "mixer" models to train predictors on the featurized data. Instantiates a set of trained mixers and an ensemble of them. :param enc_data: Pre-processed and featurized data, split into the relevant train/test splits. Keys expected are "train", "dev", and "test" """ # noqa pass
[docs] def analyze_ensemble(self, enc_data: Dict[str, pd.DataFrame]) -> None: """ Evaluate the quality of mixers within an ensemble of models. :param enc_data: Pre-processed and featurized data, split into the relevant train/test splits. """ pass
[docs] def learn(self, data: pd.DataFrame) -> None: """ Trains the attribute model starting from raw data. Raw data is pre-processed and cleaned accordingly. As data is assigned a particular type (ex: numerical, categorical, etc.), the respective feature encoder will convert it into a representation useable for training ML models. Of all ML models requested, these models are compiled and fit on the training data. This step amalgates ``preprocess`` -> ``featurize`` -> ``fit`` with the necessary splitting + analyze_data that occurs. :param data: (Unprocessed) Data used in training the model(s). :returns: Nothing; instantiates with best fit model from ensemble. """ # noqa pass
[docs] def adjust(self, new_data: pd.DataFrame, old_data: Optional[pd.DataFrame] = None, adjust_args: Optional[dict] = None ) -> None: """ Adjusts a previously trained model on new data. Adopts the same process as ``learn`` but with the exception that the `adjust` function expects the best model to have been already trained. .. warning:: This is experimental and subject to change. :param new_data: New data used to adjust a previously trained model. :param old_data: In some situations, the old data is still required to train a model (i.e. Regression mixer) to ensure the new data doesn't entirely override it. :param adjust_args: Optional dictionary with parameters to customize the finetuning process. :returns: Adjusts best-fit model in-place, doesn't return anything. """ # noqa pass
[docs] def predict(self, data: pd.DataFrame, args: Dict[str, object] = {}) -> pd.DataFrame: """ Intakes raw data to provide model predictions. :param data: Data (n_samples, n_columns) that the model will use as input to predict the corresponding target value for each sample. :param args: any parameters used to customize inference behavior. Wrapped as a ``PredictionArguments`` object. :returns: A dataframe containing predictions and additional sample-wise information. `n_samples` rows. """ # noqa pass
[docs] def test( self, data: pd.DataFrame, metrics: list, args: Dict[str, object] = {}, strict: bool = False ) -> pd.DataFrame: """ Intakes raw data to compute values for a list of provided metrics using a Lightwood predictor. :param data: Data (n_samples, n_columns) that the model(s) will evaluate on and provide the target prediction. :param metrics: A list of metrics to evaluate the model's performance on. :param args: parameters needed to update the predictor ``PredictionArguments`` object, which holds any parameters relevant for prediction. :param strict: If True, the function will raise an error if the model does not support any of the requested metrics. Otherwise it skips them. :returns: A dataframe with `n_metrics` columns, each cell containing the respective score of each metric. """ # noqa pass
[docs] def save(self, file_path: str) -> None: """ With a provided file path, saves the Predictor instance for later use. :param file_path: Location to store your Predictor Instance. :returns: Saves Predictor instance. """ with open(file_path, "wb") as fp: dill.dump(self, fp)
[docs] def export(self, file_path: str, json_ai_code: str) -> None: """ Exports both the predictor object and its code to a single binary file for later usage. :param file_path: Location to store your Predictor Instance. :param json_ai_code: The code generated by the user's specification. :returns: Saves Predictor instance. """ predictor_dict = {} predictor_dict['predictor'] = self predictor_dict['code'] = json_ai_code with open(file_path, "wb") as fp: dill.dump(predictor_dict, fp)