Using vtreat with Multinomial Classification Problems

March 11, 2020 · View on GitHub

Using vtreat with Multinomial Classification Problems

Nina Zumel and John Mount October 2019

Note this is a description of the R version of vtreat, the same example for the Python version of vtreat can be found here.

Preliminaries

Load modules/packages.

library(rqdatatable)
## Loading required package: wrapr

## Loading required package: rquery
library(vtreat)
packageVersion('vtreat')
## [1] '1.6.0'
suppressPackageStartupMessages(library(ggplot2))
library(WVPlots)

Generate example data.

  • y is a noisy sinusoidal function of the variable x
  • yc is the output to be predicted: y‘s quantized value as ’large’, ‘liminal’, or ‘small’.
  • Input xc is a categorical variable that represents a discretization of y, along some NAs
  • Input x2 is a pure noise variable with no relationship to the output
set.seed(2020)

make_data <- function(nrows) {
    d <- data.frame(x = 5*rnorm(nrows))
    d['y'] = sin(d['x']) + 0.1*rnorm(n = nrows)
    d[4:10, 'x'] = NA                  # introduce NAs
    d['xc'] = paste0('level_', 5*round(d$y/5, 1))
    d['x2'] = rnorm(n = nrows)
    d[d['xc']=='level_-1', 'xc'] = NA  # introduce a NA level
    d['yc'] = ifelse(d[['y']] > 0.5, 'large', ifelse(d[['y']] < -0.5, 'small', 'liminal'))
    return(d)
}

d = make_data(500)

d %.>%
  head(.) %.>%
  knitr::kable(.)
xyxcx2yc
1.8848611.0717646level_10.0046504large
1.5077420.9958029level_1-1.2287497large
-5.4901160.8315705level_1-0.1405980large
NA0.6007655level_0.5-0.2073270large
NA-0.8339836NA-0.9215306small
NA-0.5329006level_-0.50.3604742small

Some quick data exploration

Check how many levels xc has, and their distribution (including NA)

unique(d['xc'])
##             xc
## 1      level_1
## 4    level_0.5
## 5         <NA>
## 6   level_-0.5
## 27     level_0
## 269 level_-1.5
table(d$xc, useNA = 'ifany')
## 
## level_-0.5 level_-1.5    level_0  level_0.5    level_1       <NA> 
##         94          1         85         98        103        119

Show the distribution of yc

table(d$yc, useNA = 'ifany')
## 
##   large liminal   small 
##     162     164     174

Build a transform appropriate for classification problems.

Now that we have the data, we want to treat it prior to modeling: we want training data where all the input variables are numeric and have no missing values or NAs.

First create the data treatment transform design object, in this case a treatment for a multinomial classification problem.

We use the training data d to fit the transform and the return a treated training set: completely numeric, with no missing values.

unpack[
  transform = treat_m,
  d_prepared = cross_frame,
  score_frame = score_frame
  ] <- vtreat::mkCrossFrameMExperiment(
    d,                                    # data to learn transform from
    setdiff(colnames(d), c('y', 'yc')),   # columns to transform
    'yc'                                  # outcome variable
  )

Notice that d_prepared now only includes derived variables and the outcome yc. The derived variables will be discussed below.

d_prepared %.>%
  head(.) %.>%
  knitr::kable(.)
xx_isBADxc_catPx2xc_lev_NAxc_lev_x_level_minus_0_5xc_lev_x_level_0xc_lev_x_level_0_5xc_lev_x_level_1large_xc_catBliminal_xc_catBsmall_xc_catByc
1.884860600.2060.00465040000114.169093-12.5759659-12.8410398large
1.507741900.206-1.22874970000114.181970-12.8643483-12.6639435large
-5.490115900.206-0.14059800000114.169093-12.5759659-12.8410398large
-0.270487310.196-0.2073270000101.0963090.3616142-12.7584224large
-0.270487310.238-0.921530610000-12.940744-12.735434214.1933572small
-0.270487310.1880.360474201000-12.7736900.58799500.8699281small

Note that for the training data d: crossFrame is not the same as prepare(transform, d); the second call can lead to nested model bias in some situations, and is not recommended. For other, later data, not seen during transform design transform.preprare(o) is an appropriate step.

vtreat version 1.5.1 and newer issue a warning if you call the incorrect transform pattern on your original training data:

d_prepared_wrong <- prepare(transform, d)
## Warning in prepare.multinomial_plan(transform, d): possibly called prepare() on
## same data frame as designTreatments*()/mkCrossFrame*Experiment(), this can lead
## to over-fit. To avoid this, please use mkCrossFrameMExperiment$crossFrame.

The Score Frame

Now examine the score frame, which gives information about each new variable, including its type, which original variable it is derived from, its (cross-validated) correlation with the outcome, and its (cross-validated) significance as a one-variable linear model for the outcome.

# only show a subset of the columns
cols = c("varName", "origName", "code", "outcome_level", "rsq", "sig", "varMoves", "default_threshold", "recommended")
knitr::kable(score_frame[,cols])
varNameorigNamecodeoutcome_levelrsqsigvarMovesdefault_thresholdrecommended
xxcleanlarge0.00057560.5470919TRUE0.03333333FALSE
x_isBADxisBADlarge0.00007710.8255885TRUE0.06666667FALSE
x2x2cleanlarge0.00260750.2000083TRUE0.03333333FALSE
xc_catPxccatPlarge0.00023610.6997734TRUE0.06666667FALSE
xc_lev_NAxclevlarge0.17500950.0000000TRUE0.01333333TRUE
xc_lev_x_level_0xclevlarge0.11852540.0000000TRUE0.01333333TRUE
xc_lev_x_level_0_5xclevlarge0.06441780.0000000TRUE0.01333333TRUE
xc_lev_x_level_1xclevlarge0.47016260.0000000TRUE0.01333333TRUE
xc_lev_x_level_minus_0_5xclevlarge0.13287080.0000000TRUE0.01333333TRUE
xxcleanliminal0.00223960.2338771TRUE0.03333333FALSE
x_isBADxisBADliminal0.00201220.2591571TRUE0.06666667FALSE
x2x2cleanliminal0.00236140.2215731TRUE0.03333333FALSE
xc_catPxccatPliminal0.44100010.0000000TRUE0.06666667TRUE
xc_lev_NAxclevliminal0.17695960.0000000TRUE0.01333333TRUE
xc_lev_x_level_0xclevliminal0.36152090.0000000TRUE0.01333333TRUE
xc_lev_x_level_0_5xclevliminal0.00417770.1039765TRUE0.01333333FALSE
xc_lev_x_level_1xclevliminal0.14926500.0000000TRUE0.01333333TRUE
xc_lev_x_level_minus_0_5xclevliminal0.00765080.0277896TRUE0.01333333FALSE
xxcleansmall0.00482860.0773262TRUE0.03333333FALSE
x_isBADxisBADsmall0.00227770.2250506TRUE0.06666667FALSE
x2x2cleansmall0.00000450.9569844TRUE0.03333333FALSE
xc_catPxccatPsmall0.31177120.0000000TRUE0.06666667TRUE
xc_lev_NAxclevsmall0.51323200.0000000TRUE0.01333333TRUE
xc_lev_x_level_0xclevsmall0.12651190.0000000TRUE0.01333333TRUE
xc_lev_x_level_0_5xclevsmall0.14884740.0000000TRUE0.01333333TRUE
xc_lev_x_level_1xclevsmall0.15769770.0000000TRUE0.01333333TRUE
xc_lev_x_level_minus_0_5xclevsmall0.03876130.0000006TRUE0.01333333TRUE
large_xc_catBxccatBlarge0.79049630.0000000TRUE0.06666667TRUE
liminal_xc_catBxccatBliminal0.57864980.0000000TRUE0.06666667TRUE
small_xc_catBxccatBsmall0.79149760.0000000TRUE0.06666667TRUE

Note that the variable xc has been converted to multiple variables:

  • an indicator variable for each possible level, plus NA (xc_lev_*)
  • the value of a (cross-validated) one-variable model for each level of yc as a function of xc (*_xc_catB)
  • a variable that returns how prevalent this particular value of xc is in the training data (xc_catP)

The variable x has been converted to two new variables:

  • a clean version of x that has no missing values or NaNs
  • a variable indicating when x was NA in the original data (x_isBAD).

Any or all of these new variables are available for downstream modeling.

Note that unlike mkCrossFrameCExperiment (binomial classification), mkCrossFrameMExperiment produces multiple catB variables for a single categorical variable: one for each possible outcome class. Each catB variable is the output of a one-variable regularized logistic regression of the original variable against a single target outcome class. In other words, mkCrossFrameMExperiment treats multiclass classification as multiple “one against rest” classification problems. For a more detailed discussion of the catB variables, see the binary classification example.

Similarly, the rsq and sig columns report the variable’s cross-validated correlation and its cross-validated significance as a one-variable linear model for each target outcome.

This means that for multiclass classification problems, the score frame has multiple rows per new variable. In this example, the score frame has 30 rows for 12 variables.

The recommended column indicates which variables are non constant (varMoves == TRUE) and have a significance value smaller than default_threshold. See the section Deriving the Default Thresholds below for the reasoning behind such a default threshold. Recommended columns are intended as advice about which variables appear to be most likely to be useful in a downstream model. This advice attempts to be conservative, to reduce the possibility of mistakenly eliminating variables that may in fact be useful (although, obviously, it can still mistakenly eliminate variables that have a real but non-linear relationship to the output, as is the case with x, in our example).

Since each variable has multiple recommendations, one can consider a variable to be recommended if it is recommended for any of the outcome targets: an OR of all the recommendations.

Examining variables

To select variables we either make our selection in terms of new variables as follows.

good_new_variables = unique(score_frame[score_frame[['recommended']], 'varName', drop = TRUE])
good_new_variables
## [1] "xc_lev_NA"                "xc_lev_x_level_0"        
## [3] "xc_lev_x_level_0_5"       "xc_lev_x_level_1"        
## [5] "xc_lev_x_level_minus_0_5" "xc_catP"                 
## [7] "large_xc_catB"            "liminal_xc_catB"         
## [9] "small_xc_catB"

Or in terms of original variables as follows.

good_original_variables = unique(score_frame[score_frame[['recommended']], 'origName', drop = TRUE])
good_original_variables
## [1] "xc"

In each case we must call unique() as each variable (derived or original) is potentially qualified against each possible outcome.

Using the Prepared Data in a Model

Of course, what we really want to do with the prepared training data is to fit a model jointly with all the (recommended) variables. Let’s try fitting a logistic regression model to d_prepared.

library(glmnet)
## Loading required package: Matrix

## 
## Attaching package: 'Matrix'

## The following object is masked _by_ '.GlobalEnv':
## 
##     unpack

## The following object is masked from 'package:wrapr':
## 
##     unpack

## Loaded glmnet 3.0-2
# use only the recommended variables for this example
model_vars <- good_new_variables

model <- glmnet(x = as.matrix(d_prepared[, model_vars, drop=FALSE]), 
               y = d_prepared[['yc']],
               family = 'multinomial')
# convenience functions for predicting and adding predictions to original data frame

add_predictions <- function(d_prepared, model_vars, model) {
  preds <- predict(
    model, 
    newx = as.matrix(d_prepared[, model_vars, drop=FALSE]),
    s = min(model$lambda),  # in practice we would cross-validated for a good s
    type = 'response')
  preds <- as.data.frame(preds[, , 1])
  preds$prob_on_predicted_class <- apply(preds, 1, max)
  preds$predict <- NA_character_
  for(col in colnames(preds)) {
    alter = is.na(preds$predict) & preds[[col]] >= preds$prob_on_predicted_class
    preds$predict[alter] <- col
  }
  d_prepared <- cbind(d_prepared, preds)
  d_prepared
}

add_value_by_column <- function(d_prepared, name_column, new_column) {
  vals = unique(d_prepared[[name_column]])
  d_prepared[[new_column]] <- NA_real_
  for(col in vals) {
    match <- d_prepared[[name_column]] == col
    d_prepared[[new_column]][match] <- d_prepared[match, col, drop=TRUE]
  }
  d_prepared
}
# now predict
d_prepared <- add_predictions(d_prepared, model_vars, model)
d_prepared <- add_value_by_column(d_prepared, 'yc', 'prob_on_correct_class')

to_print <- c('yc', 'predict', 'large','liminal','small', 'prob_on_predicted_class', 'prob_on_correct_class')
d_prepared[, to_print, drop = FALSE] %.>%
  head(.) %.>%
  knitr::kable(.)
ycpredictlargeliminalsmallprob_on_predicted_classprob_on_correct_class
largelarge0.99995090.00004910.00000000.99995090.9999509
largelarge0.99994720.00005280.00000000.99994720.9999472
largelarge0.99995090.00004910.00000000.99995090.9999509
largelarge0.59776090.40205130.00018790.59776090.5977609
smallsmall0.00000120.00006950.99992920.99992920.9999292
smallsmall0.00014150.36231180.63754670.63754670.6375467
table(truth = d_prepared$yc, prediction = d_prepared$predict)
##          prediction
## truth     large liminal small
##   large     162       0     0
##   liminal    39     104    21
##   small       0      10   164

In the above confusion matrix, the entry [row, column] gives the number of true items of class[row] that also have prediction of class[column]. In other words, the entry ['large', 'liminal'] gives the number of ‘large’ items predicted to be ‘liminal’.

Now apply the model to new data.

# create the new data
dtest <- make_data(450)

# prepare the new data with vtreat
dtest_prepared = prepare(transform, dtest)
# dtest %.>% transform is an alias for prepare(transform, dtest)

dtest_prepared <- add_predictions(dtest_prepared, model_vars, model)
dtest_prepared <- add_value_by_column(dtest_prepared, 'yc', 'prob_on_correct_class')

dtest_prepared[, to_print, drop = FALSE] %.>%
  head(.) %.>%
  knitr::kable(.)
ycpredictlargeliminalsmallprob_on_predicted_classprob_on_correct_class
smallsmall0.00014590.45121530.54863880.54863880.5486388
smallsmall0.00014590.45121530.54863880.54863880.5486388
smallsmall0.00000210.00014560.99985230.99985230.9998523
liminalliminal0.00000540.99968210.00031250.99968210.9996821
largelarge0.99995660.00004340.00000000.99995660.9999566
liminallarge0.60840010.39143080.00016910.60840010.3914308
table(truth = dtest_prepared$yc, prediction = dtest_prepared$predict)
##          prediction
## truth     large liminal small
##   large     150       0     0
##   liminal    38      67    38
##   small       0       0   157

Parameters for mkCrossFrameMExperiment

We’ve tried to set the defaults for all parameters so that vtreat is usable out of the box for most applications.

suppressPackageStartupMessages(library(printr))
args("mkCrossFrameMExperiment")
## function (dframe, varlist, outcomename, ..., weights = c(), minFraction = 0.02, 
##     smFactor = 0, rareCount = 0, rareSig = 1, collarProb = 0, 
##     codeRestriction = NULL, customCoders = NULL, scale = FALSE, 
##     doCollar = FALSE, splitFunction = vtreat::kWayCrossValidation, 
##     ncross = 3, forceSplit = FALSE, catScaling = FALSE, y_dependent_treatments = c("catB"), 
##     verbose = FALSE, parallelCluster = NULL, use_parallel = TRUE, 
##     missingness_imputation = NULL, imputation_map = NULL) 
## NULL

Some parameters of note include:

codeRestriction: The types of synthetic variables that vtreat will (potentially) produce. By default, all possible applicable types will be produced. See Types of prepared variables below.

minFraction (default: 0.02): For categorical variables, indicator variables (type lev) are only produced for levels that are present at least minFraction of the time. A consequence of this is that 1/minFraction is the maximum number of indicators that will be produced for a given categorical variable. To make sure that all possible indicator variables are produced, set minFraction = 0

splitFunction: The cross validation method used by vtreat. Most people won’t have to change this.

ncross (default: 3): The number of folds to use for cross-validation

missingness_imputation: The function or value that vtreat uses to impute or “fill in” missing numerical values. The default is mean. To change the imputation function or use different functions/values for different columns, see the Imputation example.

customCoders: For passing in user-defined transforms for custom data preparation. Won’t be needed in most situations, but see here for an example of applying a GAM transform to input variables.

Types of prepared variables

clean: Produced from numerical variables: a clean numerical variable with no NAs or missing values

lev: Produced from categorical variables, one for each (common) level: for each level of the variable, indicates if that level was “on”

catP: Produced from categorical variables: indicates how often each level of the variable was “on” (its prevalence)

catB: Produced from categorical variables: score from a one-dimensional model of the centered output as a function of the variable

isBAD: Produced for numerical variables: an indicator variable that marks when the original variable was missing or NaN.

More on the coding types can be found here.

Example: Produce only a subset of variable types

In this example, suppose you only want to use indicators and continuous variables in your model; in other words, you only want to use variables of types (clean, isBAD, and lev), and no catB or catP variables.

unpack[
  transform_thin = treat_m,
  d_prepared_thin = cross_frame,
  score_frame_thin = score_frame
  ] <- vtreat::mkCrossFrameMExperiment(
    d,                                    # data to learn transform from
    setdiff(colnames(d), c('y', 'yc')),   # columns to transform
    'yc',                                 # outcome variable
    codeRestriction = c('lev',            # transforms we want
                        'clean',
                        'isBAD')
  )

d_prepared_thin %.>%
  head(.) %.>%
  knitr::kable(.)
xx_isBADx2xc_lev_NAxc_lev_x_level_minus_0_5xc_lev_x_level_0xc_lev_x_level_0_5xc_lev_x_level_1yc
1.884860600.004650400001large
1.50774190-1.228749700001large
-5.49011590-0.140598000001large
-0.27048731-0.207327000010large
-0.27048731-0.921530610000small
-0.270487310.360474201000small
# no catB or catP
knitr::kable(score_frame_thin[,cols])
varNameorigNamecodeoutcome_levelrsqsigvarMovesdefault_thresholdrecommended
xxcleanlarge0.00057560.5470919TRUE0.05555556FALSE
x_isBADxisBADlarge0.00007710.8255885TRUE0.11111111FALSE
x2x2cleanlarge0.00260750.2000083TRUE0.05555556FALSE
xc_lev_NAxclevlarge0.17500950.0000000TRUE0.02222222TRUE
xc_lev_x_level_0xclevlarge0.11852540.0000000TRUE0.02222222TRUE
xc_lev_x_level_0_5xclevlarge0.06441780.0000000TRUE0.02222222TRUE
xc_lev_x_level_1xclevlarge0.47016260.0000000TRUE0.02222222TRUE
xc_lev_x_level_minus_0_5xclevlarge0.13287080.0000000TRUE0.02222222TRUE
xxcleanliminal0.00223960.2338771TRUE0.05555556FALSE
x_isBADxisBADliminal0.00201220.2591571TRUE0.11111111FALSE
x2x2cleanliminal0.00236140.2215731TRUE0.05555556FALSE
xc_lev_NAxclevliminal0.17695960.0000000TRUE0.02222222TRUE
xc_lev_x_level_0xclevliminal0.36152090.0000000TRUE0.02222222TRUE
xc_lev_x_level_0_5xclevliminal0.00417770.1039765TRUE0.02222222FALSE
xc_lev_x_level_1xclevliminal0.14926500.0000000TRUE0.02222222TRUE
xc_lev_x_level_minus_0_5xclevliminal0.00765080.0277896TRUE0.02222222FALSE
xxcleansmall0.00482860.0773262TRUE0.05555556FALSE
x_isBADxisBADsmall0.00227770.2250506TRUE0.11111111FALSE
x2x2cleansmall0.00000450.9569844TRUE0.05555556FALSE
xc_lev_NAxclevsmall0.51323200.0000000TRUE0.02222222TRUE
xc_lev_x_level_0xclevsmall0.12651190.0000000TRUE0.02222222TRUE
xc_lev_x_level_0_5xclevsmall0.14884740.0000000TRUE0.02222222TRUE
xc_lev_x_level_1xclevsmall0.15769770.0000000TRUE0.02222222TRUE
xc_lev_x_level_minus_0_5xclevsmall0.03876130.0000006TRUE0.02222222TRUE

Deriving the Default Thresholds

While machine learning algorithms are generally tolerant to a reasonable number of irrelevant or noise variables, too many irrelevant variables can lead to serious overfit; see this article for an extreme example, one we call “Bad Bayes”. The default threshold is an attempt to eliminate obviously irrelevant variables early.

Imagine that you have a pure noise dataset, where none of the n inputs are related to the output. If you treat each variable as a one-variable model for the output, and look at the significances of each model, these significance-values will be uniformly distributed in the range [0:1]. You want to pick a weakest possible significance threshold that eliminates as many noise variables as possible. A moment’s thought should convince you that a threshold of 1/n allows only one variable through, in expectation.

This leads to the general-case heuristic that a significance threshold of 1/n on your variables should allow only one irrelevant variable through, in expectation (along with all the relevant variables). Hence, 1/n used to be our recommended threshold, when we originally developed the R version of vtreat.

We noticed, however, that this biases the filtering against numerical variables, since there are at most two derived variables (of types clean and isBAD) for every numerical variable in the original data. Categorical variables, on the other hand, are expanded to many derived variables: several indicators (one for every common level), plus a catB and a catP. So we now reweight the thresholds.

Suppose you have a (treated) data set with ntreat different types of vtreat variables (clean, lev, etc). There are nT variables of type T. Then the default threshold for all the variables of type T is 1/(ntreat nT). This reweighting helps to reduce the bias against any particular type of variable. The heuristic is still that the set of recommended variables will allow at most one noise variable into the set of candidate variables.

As noted above, because vtreat estimates variable significances using linear methods by default, some variables with a non-linear relationship to the output may fail to pass the threshold. In this case, you may not wish to filter the variables to be used in the models to only recommended variables (as we did in the main example above), but instead use all the variables, or select the variables to use by your own criteria.

Conclusion

In all cases (classification, regression, unsupervised, and multinomial classification) the intent is that vtreat transforms are essentially one liners.

The preparation commands are organized as follows:

These current revisions of the examples are designed to be small, yet complete. So as a set they have some overlap, but the user can rely mostly on a single example for a single task type.