From 7143aeaf85c9281f14344611eb5fd214e7759029 Mon Sep 17 00:00:00 2001 From: statwangz <48282751+statwangz@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:07:05 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20YangLabH?= =?UTF-8?q?KUST/mfair@3189a2a3b5e4f8fc33b7f4dcc0d091991587ae04=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 55 +++++++++++++++++++++++++---------------------------- pkgdown.yml | 2 +- search.json | 2 +- 3 files changed, 28 insertions(+), 31 deletions(-) diff --git a/index.html b/index.html index e66cb47..20465be 100644 --- a/index.html +++ b/index.html @@ -144,13 +144,13 @@

Examples# Fit the MFAI model mfairObject <- fitGreedy(mfairObject, sf_para = list(verbose_loop = FALSE)) #> Set K_max = 2! -#> Initialize the parameters of factor 1...... -#> After 1 iterations Stage 1 ends! -#> After 43 iterations Stage 2 ends! +#> Initialize the parameters of Factor 1...... +#> After 2 iterations Stage 1 ends! +#> After 77 iterations Stage 2 ends! #> Factor 1 retained! -#> Initialize the parameters of factor 2...... -#> After 1 iterations Stage 1 ends! -#> After 40 iterations Stage 2 ends! +#> Initialize the parameters of Factor 2...... +#> After 2 iterations Stage 1 ends! +#> After 76 iterations Stage 2 ends! #> Factor 2 retained! # Prediction based on the low-rank approximation @@ -159,15 +159,15 @@

Examples # Root-mean-square-error sqrt(mean((Y_obs - Y_hat)^2)) -#> [1] 12.22526 +#> [1] 12.23344 # Predicted/true matrix variance ratio var(as.vector(Y_hat)) / var(as.vector(Y_obs)) -#> [1] 0.471485 +#> [1] 0.4714952 # Prediction/noise variance ratio var(as.vector(Y_hat)) / var(as.vector(Y_obs - Y_hat)) -#> [1] 0.9884637 +#> [1] 0.9871629