from abc import ABC, abstractmethod
import numpy as np
import pandas as pd
[docs]class ObjectiveBase(ABC):
"""Base class for all objectives."""
@property
@classmethod
@abstractmethod
def name(cls):
"""Returns a name describing the objective."""
@property
@classmethod
@abstractmethod
def greater_is_better(cls):
"""Returns a boolean determining if a greater score indicates better model performance."""
@property
@classmethod
@abstractmethod
def score_needs_proba(cls):
"""Returns a boolean determining if the score() method needs probability estimates. This should be true for objectives which work with predicted probabilities, like log loss or AUC, and false for objectives which compare predicted class labels to the actual labels, like F1 or correlation.
"""
[docs] @classmethod
@abstractmethod
def objective_function(cls, y_true, y_predicted, X=None):
"""Computes the relative value of the provided predictions compared to the actual labels, according a specified metric
Arguments:
y_predicted (pd.Series) : predicted values of length [n_samples]
y_true (pd.Series) : actual class labels of length [n_samples]
X (pd.DataFrame or np.array) : extra data of shape [n_samples, n_features] necessary to calculate score
Returns:
numerical value used to calculate score
"""
[docs] def score(self, y_true, y_predicted, X=None):
"""Returns a numerical score indicating performance based on the differences between the predicted and actual values.
Arguments:
y_predicted (pd.Series) : predicted values of length [n_samples]
y_true (pd.Series) : actual class labels of length [n_samples]
X (pd.DataFrame or np.array) : extra data of shape [n_samples, n_features] necessary to calculate score
Returns:
score
"""
y_true = self._standardize_input_type(y_true)
y_predicted = self._standardize_input_type(y_predicted)
self.validate_inputs(y_true, y_predicted)
return self.objective_function(y_true, y_predicted, X=X)
@staticmethod
def _standardize_input_type(y_in):
"""Standardize np or pd input to np for scoring
Arguments:
y_in (np.ndarray or pd.Series): a matrix of predictions or predicted probabilities
Returns:
np.ndarray: a 1d np array, or a 2d np array if predicted probabilities were provided.
"""
if isinstance(y_in, (pd.Series, pd.DataFrame)):
return y_in.to_numpy()
return y_in