Last updated: 2019-08-01
Checks: 2 0
Knit directory: susie-mixture/analysis/
This reproducible R Markdown analysis was created with workflowr (version 1.4.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility. The version displayed above was the version of the Git repository at the time these results were generated.
Note that you need to be careful to ensure that all relevant files for the analysis have been committed to Git prior to generating the results (you can use wflow_publish
or wflow_git_commit
). workflowr only checks the R Markdown file, but you know if there are other scripts or data files that it depends on. Below is the status of the Git repository when the results were generated:
Ignored files:
Ignored: .RData
Ignored: .Rhistory
Ignored: .Rproj.user/
Ignored: analysis/.RData
Ignored: analysis/.Rhistory
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the R Markdown and HTML files. If you’ve configured a remote Git repository (see ?wflow_git_remote
), click on the hyperlinks in the table below to view them.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | 746720f | Zhengyang Fang | 2019-08-01 | wflow_publish(dir()) |
html | 034283b | Zhengyang Fang | 2019-07-22 | Build site. |
html | 6d9cbaa | Zhengyang Fang | 2019-07-22 | Build site. |
Rmd | 4cfac44 | Zhengyang Fang | 2019-07-22 | wflow_publish(dir()) |
html | 2a474f9 | Zhengyang Fang | 2019-07-22 | Build site. |
Rmd | dfb3b4c | Zhengyang Fang | 2019-07-22 | wflow_publish(dir()) |
html | 1256800 | Zhengyang Fang | 2019-07-22 | Build site. |
Rmd | c7ab06c | Zhengyang Fang | 2019-07-22 | wflow_publish(“full_VI_susie_mixture.Rmd”) |
html | c72a707 | Zhengyang Fang | 2019-07-22 | Build site. |
Rmd | 2c9220d | Zhengyang Fang | 2019-07-22 | wflow_publish(dir()) |
html | 8092e5a | Zhengyang Fang | 2019-07-19 | Build site. |
Rmd | 3893538 | Zhengyang Fang | 2019-07-19 | wflow_publish(dir()) |
html | dd5254c | Zhengyang Fang | 2019-07-12 | Build site. |
Rmd | 397e4a5 | Zhengyang Fang | 2019-07-12 | wflow_publish(“full_VI_susie_mixture.Rmd”) |
html | 97638e3 | Zhengyang Fang | 2019-07-12 | Build site. |
Rmd | f7893d4 | Zhengyang Fang | 2019-07-12 | wflow_publish(“full_VI_susie_mixture.Rmd”) |
html | 3c03beb | Zhengyang Fang | 2019-07-12 | Build site. |
Rmd | 9be3ff5 | Zhengyang Fang | 2019-07-12 | wflow_publish(“full_VI_susie_mixture.Rmd”) |
html | 5d3e3ef | Zhengyang Fang | 2019-07-11 | Build site. |
Rmd | 16c05dc | Zhengyang Fang | 2019-07-11 | wflow_publish(c(dir())) |
It turns out that we can apply the derivation of variational algorithm in SuSiE
paper (appendix B) to SuSiE-mixture
model. Before we start, we will modify the model assumption a little bit, so that the derivation can be applied.
\[ \begin{aligned} y &= \textbf X\boldsymbol\beta_0+\sum_{l=1}^L\textbf X\boldsymbol\beta_{l}+\epsilon,\epsilon\sim N(0,\sigma^2 I)\\ \boldsymbol\beta_0&\sim N(0,\sigma_b^2 I),\boldsymbol\beta_{l}=\boldsymbol\gamma_{l}\beta_{l},\\ \boldsymbol\gamma_l&\sim Mult(1,\pi),\beta_{l}\sim N(0,\sigma_{l}^2). \end{aligned} \]
The difference is, we assume \(\boldsymbol\beta_1\sim N(0,\sigma_b^2 I)\) instead of \(\boldsymbol\beta_1\sim N(0,\sigma^2\sigma_b^2 I)\). We will explain the reason later.
It derives a variational inference algorithm based on the additive effects model
\[ \boldsymbol y=\sum_{l=1}^L \boldsymbol\mu_l+\textbf e,\textbf e\sim N(0,\sigma^2I),\boldsymbol\mu_l\sim g_l. \]
The \(\boldsymbol\mu_l\)’s are variables, and there is no specific assumption on their distributions \(g_l\). Let \(q_l\) be the functions that approximate the posterior distribution of \(\boldsymbol\mu_l\), then the ELBO is given as follows
\[ F(q,g,\sigma^2;y)=-\frac n2\log(2\pi\sigma^2)-\frac 1{2\sigma^2}\mathbb E_q\left[\|y-\sum_{l=1}^L\mu_l\|_2^2\right] +\sum_{l=1}^L\mathbb E_{q_l}\left[\log\frac{g_l(\mu_l)}{q_l(\mu_l)}\right]. \]
Let
\[ ERSS(y,\bar\mu,\bar{\mu^2})=\mathbb E_q\|y-\sum_{l=1}^L\mu_l\|_2^2. \]
Then if \(g_l\) and \(q_l\) are irrelevant to \(\sigma^2\), then we can maximize ELBO w.r.t \(\sigma^2\) and get
\[ \hat\sigma^2=ERSS(y,\bar\mu,\bar{\mu^2})/n. \]
In SuSiE-mixture
model, we introduce an additional term \(\textbf X\boldsymbol \beta_0\). We can easily plug that into the additive effects model. Let \(\boldsymbol\mu_{0}=\textbf X\boldsymbol \beta_1\), and \(y=\sum_{l=0}^L\mu_l+e\). By assuming the distribution to be \(N(0,XX^T\sigma^2_b)\) instead of \(N(0,XX^T\sigma^2_b\sigma^2)\), the distribution \(g_0\) will be irrelevant to \(\sigma^2\), so that the formula to estimate \(\sigma^2\) will remain the same as above.
Based on the additive effects model, specifically for SuSiE
, it turns out only the first and second moments of \(\beta\) are required to optimize over \(q_l\) and \(g_l\). We can derive the IBSS algorithm as follows
For SuSiE-mixture
model, we take the addition term \(X\beta_1\) into account, and update \(\beta_1\) in each step. Then the algorithm will be
See experiment2 for the simulation for this algorithm.