Last updated: 2021-03-07

Checks: 7 0

Knit directory: fastTopics-experiments/analysis/

This reproducible R Markdown analysis was created with workflowr (version 1.6.2.9000). 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 job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.

The command set.seed(1) was run prior to running the code in the R Markdown file. Setting a seed ensures that any results that rely on randomness, e.g. subsampling or permutations, are reproducible.

Great job! Recording the operating system, R version, and package versions is critical for reproducibility.

Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.

Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.

Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.

The results in this page were generated with repository version b9fac71. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.

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:    data/newsgroups.RData
    Ignored:    data/nips.RData
    Ignored:    output/newsgroups/fits-newsgroups.RData
    Ignored:    output/nips/fits-nips.RData

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 repository in which changes were made to the R Markdown (analysis/smallsim.Rmd) and HTML (docs/smallsim.html) files. If you’ve configured a remote Git repository (see ?wflow_git_remote), click on the hyperlinks in the table below to view the files as they were in that past version.

File Version Author Date Message
Rmd b9fac71 Peter Carbonetto 2021-03-07 workflowr::wflow_publish(“smallsim.Rmd”)
Rmd 01898db Peter Carbonetto 2021-03-06 Added some text to smallsim.Rmd.
html 51c5321 Peter Carbonetto 2021-03-06 Made some improvements to “smallsim” demo.
Rmd 5983a39 Peter Carbonetto 2021-03-06 workflowr::wflow_publish(“smallsim.Rmd”)
Rmd eff0954 Peter Carbonetto 2021-03-06 Added some explanatory text to smallsim.Rmd.
html eff0954 Peter Carbonetto 2021-03-06 Added some explanatory text to smallsim.Rmd.
html 59a8594 Peter Carbonetto 2021-03-05 Revised the simulations slightly.
Rmd 1a59342 Peter Carbonetto 2021-03-05 workflowr::wflow_publish(“smallsim.Rmd”)
html ffad471 Peter Carbonetto 2021-03-05 Build site.
Rmd cfc44e5 Peter Carbonetto 2021-03-05 workflowr::wflow_publish(“smallsim.Rmd”)
html 52759e5 Peter Carbonetto 2021-03-05 Added first simulation to “smallsim” demo.
Rmd fe510f0 Peter Carbonetto 2021-03-05 workflowr::wflow_publish(“smallsim.Rmd”)
html b6458fe Peter Carbonetto 2021-03-05 Built a first draft of the “smallsim” demo.
Rmd d0db5de Peter Carbonetto 2021-03-05 workflowr::wflow_publish(“smallsim.Rmd”)
Rmd 275fb51 Peter Carbonetto 2021-03-05 Implemented functions simulate_sizes and simulate_factors.

Add text here.

Load the packages used in the analysis below, as well as additional functions that we will use to simulate the data.

library(fastTopics)
library(mvtnorm)
library(ggplot2)
library(cowplot)
source("../code/smallsim_functions.R")

Set the seed so that the results can be reproduced.

set.seed(1)

Independent topics scenario

In this first example, we simulate a \(100 \times 400\) counts matrix from a multinomial topic model with \(K = 6\) topics.

n <- 100
m <- 400
k <- 6
S <- 13*diag(k) - 2
F <- simulate_factors(m,k)
L <- simulate_loadings(n,k,S)
s <- simulate_sizes(n)
X <- simulate_multinom_counts(L,F,s)
X <- X[,colSums(X > 0) > 0]

The topic proportions for each of the 100 samples—that is, a row of the counts matrix—are randomly drawn according to the correlated topic model: \(\eta_i\) for row \(i\) is drawn from the multivariate normal with mean zero and covariance matrix \(S\), such that \(s_{kk} = 11\), \(s_{jk} = -2\) for all \(j \neq k\). Generated in this way, the topic proportions tend to be roughly orthogonal:

y <- apply(L,1,which.max)
y <- rank(y,ties.method = "random")
y <- qqnorm(y,plot.it = FALSE)$x
fit <- list(L = L)
class(fit) <- c("multinom_topic_model_fit","list")
structure_plot(fit,topics = 1:6,perplexity = 30,Y_init = matrix(y),
               verbose = FALSE)

Here we compare two different updates for fitting a Poisson NMF model to the simulated counts: EM updates, and sequential coordinate descent (SCD). The model fitting is initialized by first running 50 EM updates, with the aim of better ensuring that the same local maximum is recovered by both runs.

fit0 <- fit_poisson_nmf(X,k,numiter = 50,method = "em",
                        control = list(extrapolate = FALSE,numiter = 4))
fit1 <- fit_poisson_nmf(X,fit0 = fit0,numiter = 450,method = "em",
                        control = list(extrapolate = FALSE,numiter = 4))
fit2 <- fit_poisson_nmf(X,fit0 = fit0,numiter = 450,method = "scd",
                        control = list(extrapolate = FALSE,numiter = 4))
fit1 <- poisson2multinom(fit1)
fit2 <- poisson2multinom(fit2)

This next plot shows the improvement in the solution over time for the EM and SCD updates.

pdat <- rbind(data.frame(x=1:500,y=fit1$progress$loglik.multinom,method="em"),
              data.frame(x=1:500,y=fit2$progress$loglik.multinom,method="scd"))
pdat <- transform(pdat,y = max(y) - y + 0.01)
pdat <- subset(pdat,x > 50)
ggplot(pdat,aes(x = x,y = y,color = method)) +
  geom_line(size = 0.75) +
  scale_y_continuous(trans = "log10",breaks = 10^seq(-2,3)) +
  scale_color_manual(values = c("dodgerblue","darkorange")) +
  labs(x = "iteration",y = "distance from best loglik") +
  theme_cowplot(font_size = 10)

Version Author Date
51c5321 Peter Carbonetto 2021-03-06
59a8594 Peter Carbonetto 2021-03-05
ffad471 Peter Carbonetto 2021-03-05

Among the two methods compared, the SCD updates progresses more rapidly toward a solution. Still, the EM updates recover the same solution after a reasonable number of iterations. Next we will see an example in which EM updates fail to make reasonable progress.

Correlated topics scenario

Add text here.

set.seed(1)
S[5,6] <- 10
S[6,5] <- 10
L <- simulate_loadings(n,k,S)
X <- simulate_multinom_counts(L,F,s)
X <- X[,colSums(X > 0) > 0]

TO DO: Plot mixture proportions for topics 5 and 6.

y <- apply(L,1,which.max)
y <- rank(y,ties.method = "random")
y <- qqnorm(y,plot.it = FALSE)$x
fit <- list(L = L)
class(fit) <- c("multinom_topic_model_fit","list")
structure_plot(fit,topics = 1:6,perplexity = 30,Y_init = matrix(y),
               verbose = FALSE)

fit0 <- fit_poisson_nmf(X,k,numiter = 50,method = "em",
                        control = list(extrapolate = FALSE,numiter = 4))
fit1 <- fit_poisson_nmf(X,fit0 = fit0,numiter = 800,method = "em",
                        control = list(extrapolate = FALSE,numiter = 4))
fit2 <- fit_poisson_nmf(X,fit0 = fit0,numiter = 1000,method = "scd",
                        control = list(extrapolate = FALSE,numiter = 4))
fit3 <- fit_poisson_nmf(X,fit0 = fit1,numiter = 200,method = "scd",
                        control = list(extrapolate = FALSE,numiter = 4))
fit1 <- fit_poisson_nmf(X,fit0 = fit1,numiter = 200,method = "scd",
                        control = list(extrapolate = FALSE,numiter = 4))

Add text here.

fit1 <- poisson2multinom(fit1)
fit2 <- poisson2multinom(fit2)
fit3 <- poisson2multinom(fit3)
plot_progress(list(em = fit1,scd = fit2,"scd+em" = fit3),
              x = "iter",add.point.every = 100)

Version Author Date
59a8594 Peter Carbonetto 2021-03-05
ffad471 Peter Carbonetto 2021-03-05

sessionInfo()
# R version 3.6.2 (2019-12-12)
# Platform: x86_64-apple-darwin15.6.0 (64-bit)
# Running under: macOS Catalina 10.15.7
# 
# Matrix products: default
# BLAS:   /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRblas.0.dylib
# LAPACK: /Library/Frameworks/R.framework/Versions/3.6/Resources/lib/libRlapack.dylib
# 
# locale:
# [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
# 
# attached base packages:
# [1] stats     graphics  grDevices utils     datasets  methods   base     
# 
# other attached packages:
# [1] cowplot_1.0.0     ggplot2_3.3.0     mvtnorm_1.0-11    fastTopics_0.5-24
# 
# loaded via a namespace (and not attached):
#  [1] httr_1.4.2           tidyr_1.0.0          jsonlite_1.6        
#  [4] viridisLite_0.3.0    RcppParallel_4.4.2   assertthat_0.2.1    
#  [7] mixsqp_0.3-44        yaml_2.2.0           progress_1.2.2      
# [10] ggrepel_0.9.0        pillar_1.4.3         backports_1.1.5     
# [13] lattice_0.20-38      quantreg_5.54        glue_1.3.1          
# [16] quadprog_1.5-8       digest_0.6.23        promises_1.1.0      
# [19] colorspace_1.4-1     htmltools_0.4.0      httpuv_1.5.2        
# [22] Matrix_1.2-18        pkgconfig_2.0.3      invgamma_1.1        
# [25] SparseM_1.78         purrr_0.3.3          scales_1.1.0        
# [28] whisker_0.4          later_1.0.0          Rtsne_0.15          
# [31] MatrixModels_0.4-1   git2r_0.26.1         tibble_2.1.3        
# [34] farver_2.0.1         withr_2.1.2          ashr_2.2-51         
# [37] lazyeval_0.2.2       magrittr_1.5         crayon_1.3.4        
# [40] mcmc_0.9-6           evaluate_0.14        fs_1.3.1            
# [43] MASS_7.3-51.4        truncnorm_1.0-8      tools_3.6.2         
# [46] data.table_1.12.8    prettyunits_1.1.1    hms_0.5.2           
# [49] lifecycle_0.1.0      stringr_1.4.0        MCMCpack_1.4-5      
# [52] plotly_4.9.2         munsell_0.5.0        irlba_2.3.3         
# [55] compiler_3.6.2       rlang_0.4.5          grid_3.6.2          
# [58] htmlwidgets_1.5.1    labeling_0.3         rmarkdown_2.3       
# [61] gtable_0.3.0         R6_2.4.1             knitr_1.26          
# [64] dplyr_0.8.3          zeallot_0.1.0        workflowr_1.6.2.9000
# [67] rprojroot_1.3-2      stringi_1.4.3        SQUAREM_2017.10-1   
# [70] Rcpp_1.0.5           vctrs_0.2.1          tidyselect_0.2.5    
# [73] xfun_0.11            coda_0.19-3