The package implements a collection of Generalized Elastic Net (GELnet) solvers, as outlined in the following publication: https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1004790 This vignette covers the basic usage of the gelnet package. The interface to the solvers was designed to be very flexible, by allowing the user to specify a large number of parameters. At the same time, nearly all of the parameters are given reasonable default values, making the interface easy to use if the additional flexibility is not required.
Let \(X\) be a samples-by-features data matrix and \(y\) be a column vector of labels. Typically, \(X\) and \(y\) are determined by the prediction task at hand, but for the purposes of this tutorial, we are going to generate them randomly:
Let’s further assume that we are given a feature-feature relationship matrix \(A\). If working with genomic features, \(A\) might be the adjacency of a gene-gene interaction network. Again, we are going to generate a random matrix for the purposes of this tutorial:
We are now going to utilize the GELnet toolkit to learn a linear regression model, such that the model weights are more similar for the features that share an interaction on \(A\). As discussed in the manuscript, this can be achieved by formulating a feature-feature penalty matrix using either the graph Laplacian or \((I-D)\), where \(D\) is the graph diffusion matrix and \(I\) is the identity matrix. The gelnet package provides a function to compute the graph Laplacian from the adjacency. Here, we utilize the normalized Laplacian to keep the penalty term on the same scale as the traditional ridge regression:
The model can now be learned via
## Training a linear regression model
## Running linear regression optimization with L1 = 0.100000, L2 = 1.000000
## f = 0.262661 after iteration 5
where we set the L1-norm and L2-norm penalties to 0.1 and 1, respectively. The response for new samples is computed via the dot product with the weights:
## [,1]
## [1,] 0.05009960
## [2,] 0.23054654
## [3,] -0.04329647
## [4,] -0.46207635
## [5,] 0.24931138
## [6,] -0.01833039
## [7,] -0.31058640
## [8,] -0.03460693
## [9,] -0.42362614
## [10,] -0.03407740
Linear regression is one of the three types of prediction problems supported by the package. The other two are binary logistic regression and one-class logistic regression. The latter is outlined in the following paper: http://psb.stanford.edu/psb-online/proceedings/psb16/sokolov.pdf
The package recognizes the problem type based on the class of the \(y\) argument. To train a binary predictor, we have to provide \(y\) as a two-level factor, where the first level is treated as the positive class.
## Training a logistic regression model
## Treating TRUE as the positive class
## Running logistic regression optimization with L1 = 0.100000, L2 = 1.000000
## Iteration 1: f = 0.693147
## Iteration 2: f = 0.686449
If we were to score the training data using this model, we can observe that the positive samples are receiving higher scores than the negative ones
## scores labels
## 1 -0.008196448 TRUE
## 2 -0.118323816 FALSE
## 3 0.005392100 FALSE
## 4 0.154842396 TRUE
## 5 -0.169977260 FALSE
## 6 -0.165467229 FALSE
## 7 -0.045520933 FALSE
## 8 -0.109922941 FALSE
## 9 -0.011060446 TRUE
## 10 0.068189006 TRUE
## 11 0.005471914 FALSE
## 12 0.029964750 TRUE
## 13 -0.105197674 FALSE
## 14 -0.002411381 TRUE
## 15 0.208720086 TRUE
## 16 -0.008803895 TRUE
## 17 0.200558420 TRUE
## 18 -0.153586634 FALSE
## 19 0.290289276 TRUE
## 20 -0.062636451 FALSE
However, if there is class imbalance, the scores will tend to be skewed towards the class with more samples. This can be addressed by using an additional flag when training the model
## Training a logistic regression model
## Treating TRUE as the positive class
## Running logistic regression optimization with L1 = 0.100000, L2 = 1.000000
## Iteration 1: f = 0.693147
## Iteration 2: f = 0.686449
## scores labels
## 1 -0.008196448 TRUE
## 2 -0.118323816 FALSE
## 3 0.005392100 FALSE
## 4 0.154842396 TRUE
## 5 -0.169977260 FALSE
## 6 -0.165467229 FALSE
## 7 -0.045520933 FALSE
## 8 -0.109922941 FALSE
## 9 -0.011060446 TRUE
## 10 0.068189006 TRUE
## 11 0.005471914 FALSE
## 12 0.029964750 TRUE
## 13 -0.105197674 FALSE
## 14 -0.002411381 TRUE
## 15 0.208720086 TRUE
## 16 -0.008803895 TRUE
## 17 0.200558420 TRUE
## 18 -0.153586634 FALSE
## 19 0.290289276 TRUE
## 20 -0.062636451 FALSE
Traditionally, the loss function for logistic regression is averaged over \(n\), the number of samples. This causes every sample to make the same contribution to the loss, which is what causes the skew towards the larger class. By using the balanced flag, the problem is reformulated slightly such that the loss is averaged over the positive and negative samples separately, and then the mean of both averages is used as the overall loss.
Finally, we can build a one-class logistic regression model using just the positive samples. To train a one-class model we simply provide NULL for the \(y\) argument:
## Training a one-class model
## Iteration 1 : f = 0.6931472
## Iteration 2 : f = 0.6184981
## Iteration 3 : f = 0.6184304
The model can now be used as a detector that recognizes the positive samples
## scores labels
## 1 -0.008196448 TRUE
## 2 -0.118323816 FALSE
## 3 0.005392100 FALSE
## 4 0.154842396 TRUE
## 5 -0.169977260 FALSE
## 6 -0.165467229 FALSE
## 7 -0.045520933 FALSE
## 8 -0.109922941 FALSE
## 9 -0.011060446 TRUE
## 10 0.068189006 TRUE
## 11 0.005471914 FALSE
## 12 0.029964750 TRUE
## 13 -0.105197674 FALSE
## 14 -0.002411381 TRUE
## 15 0.208720086 TRUE
## 16 -0.008803895 TRUE
## 17 0.200558420 TRUE
## 18 -0.153586634 FALSE
## 19 0.290289276 TRUE
## 20 -0.062636451 FALSE