Logistic Regression implementation that uses R's glm
LogisticRegressionFast(X, y, lambda = 0, intercept = TRUE, scale = FALSE,
init = NA, x_center = FALSE)
matrix; Design matrix for labeled data
factor or integer vector; Label vector
numeric; not used
logical; Whether an intercept should be included
logical; Should the features be normalized? (default: FALSE)
numeric; not used
logical; Should the features be centered?