fix few things for the LLF
[valse.git] / pkg / R / main.R
CommitLineData
ffdf9447 1#' valse
086ca318
BA
2#'
3#' Main function
4#'
5#' @param X matrix of covariates (of size n*p)
6#' @param Y matrix of responses (of size n*m)
7#' @param procedure among 'LassoMLE' or 'LassoRank'
8#' @param selecMod method to select a model among 'DDSE', 'DJump', 'BIC' or 'AIC'
9#' @param gamma integer for the power in the penaly, by default = 1
10#' @param mini integer, minimum number of iterations in the EM algorithm, by default = 10
11#' @param maxi integer, maximum number of iterations in the EM algorithm, by default = 100
12#' @param eps real, threshold to say the EM algorithm converges, by default = 1e-4
13#' @param kmin integer, minimum number of clusters, by default = 2
14#' @param kmax integer, maximum number of clusters, by default = 10
43d76c49 15#' @param rank.min integer, minimum rank in the low rank procedure, by default = 1
16#' @param rank.max integer, maximum rank in the low rank procedure, by default = 5
aa480ac1
BA
17#' @param ncores_outer Number of cores for the outer loop on k
18#' @param ncores_inner Number of cores for the inner loop on lambda
43d76c49 19#' @param thresh real, threshold to say a variable is relevant, by default = 1e-8
ca277ac5 20#' @param compute_grid_lambda, TRUE to compute the grid, FALSE if known (in arguments)
21#' @param grid_lambda, a vector with regularization parameters if known, by default 0
aa480ac1
BA
22#' @param size_coll_mod (Maximum) size of a collection of models
23#' @param fast TRUE to use compiled C code, FALSE for R code only
24#' @param verbose TRUE to show some execution traces
086ca318
BA
25#'
26#' @return a list with estimators of parameters
27#'
28#' @examples
29#' #TODO: a few examples
30#' @export
ffdf9447
BA
31valse <- function(X, Y, procedure = "LassoMLE", selecMod = "DDSE", gamma = 1, mini = 10,
32 maxi = 50, eps = 1e-04, kmin = 2, kmax = 3, rank.min = 1, rank.max = 5, ncores_outer = 1,
ca277ac5 33 ncores_inner = 1, thresh = 1e-08, compute_grid_lambda = TRUE, grid_lambda = 0, size_coll_mod = 10, fast = TRUE, verbose = FALSE,
ffdf9447 34 plot = TRUE)
1b698c16 35{
ffdf9447
BA
36 p <- dim(X)[2]
37 m <- dim(Y)[2]
38 n <- dim(X)[1]
1b698c16 39
ffdf9447 40 if (verbose)
fb6e49cb 41 print("main loop: over all k and all lambda")
1b698c16
BA
42
43 if (ncores_outer > 1) {
ffdf9447
BA
44 cl <- parallel::makeCluster(ncores_outer, outfile = "")
45 parallel::clusterExport(cl = cl, envir = environment(), varlist = c("X",
46 "Y", "procedure", "selecMod", "gamma", "mini", "maxi", "eps", "kmin",
47 "kmax", "rank.min", "rank.max", "ncores_outer", "ncores_inner", "thresh",
48 "size_coll_mod", "verbose", "p", "m"))
fb6e49cb 49 }
1b698c16 50
fb6e49cb 51 # Compute models with k components
52 computeModels <- function(k)
53 {
ffdf9447
BA
54 if (ncores_outer > 1)
55 require("valse") #nodes start with an empty environment
1b698c16 56
ffdf9447
BA
57 if (verbose)
58 print(paste("Parameters initialization for k =", k))
59 # smallEM initializes parameters by k-means and regression model in each
60 # component, doing this 20 times, and keeping the values maximizing the
61 # likelihood after 10 iterations of the EM algorithm.
a3cbbaea 62 P <- initSmallEM(k, X, Y, fast)
ca277ac5 63 if (compute_grid_lambda == TRUE)
64 {
65 grid_lambda <- computeGridLambda(P$phiInit, P$rhoInit, P$piInit, P$gamInit,
66 X, Y, gamma, mini, maxi, eps, fast)
67 }
ffdf9447
BA
68 if (length(grid_lambda) > size_coll_mod)
69 grid_lambda <- grid_lambda[seq(1, length(grid_lambda), length.out = size_coll_mod)]
1b698c16 70
ffdf9447 71 if (verbose)
fb6e49cb 72 print("Compute relevant parameters")
ffdf9447
BA
73 # select variables according to each regularization parameter from the grid:
74 # S$selected corresponding to selected variables
75 S <- selectVariables(P$phiInit, P$rhoInit, P$piInit, P$gamInit, mini, maxi,
76 gamma, grid_lambda, X, Y, thresh, eps, ncores_inner, fast)
1b698c16
BA
77
78 if (procedure == "LassoMLE") {
ffdf9447
BA
79 if (verbose)
80 print("run the procedure Lasso-MLE")
81 # compute parameter estimations, with the Maximum Likelihood Estimator,
82 # restricted on selected variables.
83 models <- constructionModelesLassoMLE(P$phiInit, P$rhoInit, P$piInit,
84 P$gamInit, mini, maxi, gamma, X, Y, eps, S, ncores_inner, fast, verbose)
1b698c16 85 } else {
ffdf9447
BA
86 if (verbose)
87 print("run the procedure Lasso-Rank")
88 # compute parameter estimations, with the Low Rank Estimator, restricted on
89 # selected variables.
90 models <- constructionModelesLassoRank(S, k, mini, maxi, X, Y, eps, rank.min,
91 rank.max, ncores_inner, fast, verbose)
086ca318 92 }
ffdf9447
BA
93 # warning! Some models are NULL after running selectVariables
94 models <- models[sapply(models, function(cell) !is.null(cell))]
0eb161e3 95 models
086ca318 96 }
1b698c16 97
fb6e49cb 98 # List (index k) of lists (index lambda) of models
1b698c16
BA
99 models_list <-
100 if (ncores_outer > 1) {
101 parLapply(cl, kmin:kmax, computeModels)
102 } else {
103 lapply(kmin:kmax, computeModels)
104 }
ffdf9447 105 if (ncores_outer > 1)
fb6e49cb 106 parallel::stopCluster(cl)
1b698c16 107
ffdf9447 108 if (!requireNamespace("capushe", quietly = TRUE))
fb6e49cb 109 {
110 warning("'capushe' not available: returning all models")
ffdf9447 111 return(models_list)
fb6e49cb 112 }
1b698c16 113
ffdf9447
BA
114 # Get summary 'tableauRecap' from models
115 tableauRecap <- do.call(rbind, lapply(seq_along(models_list), function(i)
116 {
fb6e49cb 117 models <- models_list[[i]]
ffdf9447
BA
118 # For a collection of models (same k, several lambda):
119 LLH <- sapply(models, function(model) model$llh[1])
120 k <- length(models[[1]]$pi)
121 sumPen <- sapply(models, function(model) k * (dim(model$rho)[1] + sum(model$phi[,
122 , 1] != 0) + 1) - 1)
123 data.frame(model = paste(i, ".", seq_along(models), sep = ""), pen = sumPen/n,
124 complexity = sumPen, contrast = -LLH)
125 }))
ffdf9447 126 tableauRecap <- tableauRecap[which(tableauRecap[, 4] != Inf), ]
ca277ac5 127 if (verbose == TRUE)
128 {
129 print(tableauRecap)
130 }
ffdf9447
BA
131 modSel <- capushe::capushe(tableauRecap, n)
132 indModSel <- if (selecMod == "DDSE")
133 as.numeric(modSel@DDSE@model) else if (selecMod == "Djump")
134 as.numeric(modSel@Djump@model) else if (selecMod == "BIC")
135 modSel@BIC_capushe$model else if (selecMod == "AIC")
7ac88d64 136 modSel@AIC_capushe$model
1b698c16 137
ffdf9447
BA
138 mod <- as.character(tableauRecap[indModSel, 1])
139 listMod <- as.integer(unlist(strsplit(mod, "[.]")))
140 modelSel <- models_list[[listMod[1]]][[listMod[2]]]
1b698c16 141
ffdf9447
BA
142 ## Affectations
143 Gam <- matrix(0, ncol = length(modelSel$pi), nrow = n)
144 for (i in 1:n)
145 {
146 for (r in 1:length(modelSel$pi))
147 {
1b698c16
BA
148 sqNorm2 <- sum((Y[i, ] %*% modelSel$rho[, , r] - X[i, ] %*% modelSel$phi[, , r])^2)
149 Gam[i, r] <- modelSel$pi[r] * exp(-0.5 * sqNorm2) * det(modelSel$rho[, , r])
7ac88d64 150 }
151 }
ffdf9447
BA
152 Gam <- Gam/rowSums(Gam)
153 modelSel$affec <- apply(Gam, 1, which.max)
154 modelSel$proba <- Gam
ca277ac5 155 modelSel$tableau <- tableauRecap
1b698c16 156
ffdf9447 157 if (plot)
ffdf9447 158 print(plot_valse(X, Y, modelSel, n))
1b698c16 159
7ac88d64 160 return(modelSel)
086ca318 161}