1 #Return a list of outputs, for each lambda in grid: selected,Rho,Pi
2 selectiontotale = function(phiInit,rhoInit,piInit,gamInit,mini,maxi,gamma,glambda,X,Y,thresh,tau, parallel = FALSE){
5 cl = parallel::makeCluster( parallel::detectCores() / 4) # <-- ça devrait être un argument
6 parallel::clusterExport(cl=cl,
7 varlist=c("phiInit","rhoInit","gamInit","mini","maxi","glambda","X","Y","thresh","tau"),
9 #Pour chaque lambda de la grille, on calcule les coefficients
10 out = parLapply(cl, 1:length(glambda), function(lambdaIndex)
13 EMGLLF(phiInit,rhoInit,piInit,gamInit,mini,maxi,gamma,glambda[lambdaIndex],X,Y,tau)
17 #selectedVariables: list where element j contains vector of selected variables in [1,m]
18 selectedVariables = lapply(1:p, function(j) {
19 #from boolean matrix mxk of selected variables obtain the corresponding boolean m-vector,
20 #and finally return the corresponding indices
21 seq_len(m)[ apply( abs(params$phi[j,,]) > thresh, 1, any ) ]
24 list("selected"=selectedVariables,"Rho"=params$Rho,"Pi"=params$Pi)
26 parallel::stopCluster(cl)
29 selectedVariables = list()
33 #Pour chaque lambda de la grille, on calcule les coefficients
34 for (lambdaIndex in 1:length(glambda)){
37 EMGLLF(phiInit,rhoInit,piInit,gamInit,mini,maxi,gamma,glambda[lambdaIndex],X,Y,tau)
40 #selectedVariables: list where element j contains vector of selected variables in [1,m]
41 if (sum(params$phi) != 0){
42 selectedVariables[[cpt]] = sapply(1:p, function(j) {
43 #from boolean matrix mxk of selected variables obtain the corresponding boolean m-vector,
44 #and finally return the corresponding indices
45 c(seq_len(m)[ apply( abs(params$phi[j,,]) > thresh, 1, any ) ], rep(0, m-length(seq_len(m)[ apply( abs(params$phi[j,,]) > thresh, 1, any ) ] ) ))
47 if (length(unique(selectedVariables)) == length(selectedVariables)){
48 Rho[[cpt]] = params$rho
54 list("selected"=selectedVariables,"Rho"=Rho,"Pi"=Pi)