- t.data
The tensor data in the target domain, a p1 * p2 * ... * pM * n array, where n is the sample size and pm is dimension of the m-th tensor mode. M should be larger than 2.
- A.data
The tensor data in auxiliary domains, a list with K elements, each of which is a p1 * p2 * ... * pM * nk array, where nk is the sample size of the k-th auxiliary domain.
- A.lambda
The tuning parameters used for initialization in auxiliary domains, a list with K elements, each of which is a M-dimensional vector corresponding to M modes.
- A.orac
The set of informative auxiliary domains, and the default setting is NULL, which means that no set is specified.
- c
The c of subjects in the target domain are used for initialization of the transfer learning, and the remaining 1-c of subjects are used for the model selection step. The default setting is 0.8.
- t.lambda.int.trans
The tuning parameters used for initialization in the target domain (based on c subjects used for transfer learning), that is, the tuning lambda for Tlasso (PAMI, 2020) & Separable method (JCGS, 2022)
- t.lambda.int.aggr
The tuning parameters used for initialization in the target domain (based on 1-c subjects used for the model selection step).
- theta.algm
The optimization algorithm used to solve \(\widehat{\Omega}\) in step 2(b), which can be selected as "admm" (ADMM algorithm) or "cd" (coordinate descent).
- cov.select
Methods used to calculate covariance matrices for initialization in both target and auxiliary domains, which can be selected as "tensor.prod" (tensor product based on tensor subject and the initial estimate of the precision matrix, TPAMI, 2020) and "inverse" (direct inversion of the initial estimate of the precision matrix)
- cov.select.agg.size
Methods used to calculate covariance matrices for model selection step in the target domain.
- cov.select.agg.diff
Methods used to calculate covariance matrices for model selection step in the target domain.
- symmetric
Whether to symmetrize the final estimated precision matrices, and the default is True.
- init.method
The initialization method for tensor precision matrices in the target domain, which can be selected as "Tlasso" (PAMI, 2020) & "sepa" (Separable method, JCGS, 2022). Note that the "sepa" method has not been included in the current version of this R package to circumvent code ownership issues.
- init.method.aux
The initialization method for tensor precision matrices in auxiliary domains.
- mode.set
Whether to estimate only the specified mode, and the default setting is NULL, which means estimating all mode.
- init.iter.Tlasso
The number of maximal iteration when using Tlasso for initialization, default is 2.
- cn.lam2
The coefficient set in tuning parameters used to solve \(\widehat{\Omega}\) in step 2(b), default is seq(0.1,1,length.out =10).
- c.lam.Tlasso
The coefficient in tuning parameters for initialization (when using Tlasso): \(c.lam.Tlasso * \sqrt( pm * \log(pm)/( n*p1*...*pM ))\), default is 20 suggested in (PAMI, 2020).
- c.lam.sepa
The coefficient in tuning parameters for initialization (when using sepa): \(c.lam.sepa * \sqrt( pm * \log(pm)/( n*p1*...*pM ))\).
- adjust.BIC
Whether to use the adjusted BIC to select lambda2, the default setting is F.
- normalize
The normalization method of precision matrix. When using Tlasso, \(\Omega_{11} = 1\) if normalize = F and \(\| \Omega_{11} \|_{F} = 1\) if normalize = T. Default value is T.
- inti.the
T: the initial values in Step 2(b) is Omega0.
- sel.ind
The approach to model selection, which can be selected from c("fit", "predict").