## Loading required package: idem
## Loading required package: Rcpp
## Loading required package: rstan
## Loading required package: ggplot2
## Loading required package: StanHeaders
## rstan (Version 2.17.3, GitRev: 2e1f913d3ca3)
## For execution on a local, multicore CPU with excess RAM we recommend calling
## options(mc.cores = parallel::detectCores()).
## To avoid recompilation of unchanged Stan programs, we recommend calling
## rstan_options(auto_write = TRUE)
In randomized studies involving severely ill patients, functional outcomes are often unobserved due to missed clinic visits, premature withdrawal or death. It is well known that if these unobserved functional outcomes are not handled properly, biased treatment comparisons can be produced.
R package idem implement a procedure for comparing treatments that is based on the composite endpoint of both the functional outcome and survival. The procedure considers missing data imputation with a sensitivity analysis strategy to handle the unobserved functional outcomes not due to death.
In dataset accepted by idem, each row should represent a subject with treatment assignment, baseline coveraites, baseline outcome, post-randomization outcomes and survival time.
The idem package provides dataset abc from ABC trial as an example data set.
head(abc);
## AGE TRT SURV Y1 Y2
## 1 59.63 1 999 NA NA
## 2 66.89 0 999 49 52
## 3 59.70 1 1 NA NA
## 4 81.41 0 72 NA NA
## 5 66.52 1 999 51 45
## 6 40.27 0 65 NA NA
There are four major steps in conducting imputation and inference using idem. First, a class IDEMDATA object should be generated by the function imData. Second, the imputation models will be fit to the data observed from the completers by the function imFitModel. Third, imputation can be conducted by the function imImpAll. Lastly, treatment effect estimation and hypothesis testing can be performed by function imInfer.
In this step, the original dataset with specification parameters will be combined and checked. These parameters include variable names in the dataset, endpoint specification, duration of the study, etc.. If there is mis-specification, error messages will be generated. Otherwise, a class IDEMDATA object will be generated with certain data visulation functions implemented as its S3 methods.
rst.data <- imData(abc, trt="TRT", outcome=c("Y1","Y2"), y0=NULL,
endfml="Y3", bounds=c(10,20), duration=365,
err.terminate = FALSE);
print(rst.data);
## Model specification is invalid. Please check the following:
## No survival time specified
## Endpoint formula error: Error in eval(substitute(expr), data, enclos = parent.frame()) : object 'Y3' not found
## Upper bound is smaller than some observed outcomes
rst.data <- imData(abc, trt="TRT", surv="SURV", outcome=c("Y1","Y2"),
y0=NULL, endfml="Y2",
trt.label = c("UC+SBT", "SAT+SBT"),
cov=c("AGE"), duration=365, bounds=c(0,100));
The class IDEMDATA provides S3 plot and summary methods with multiple options for the visualization of the data.
plot(rst.data, opt = "survivor");
summary(rst.data, opt = "misstable");
## Y1 Y2 UC.SBT SAT.SBT
## Deaths on study 58 (62%) 38 (41%)
## S=1 Observed Observed 18 (19%) 32 (34%)
## S=2 Observed Missing 8 (9%) 8 (9%)
## S=3 Missing Observed 1 (1%) 0 (0%)
## S=4 Missing Missing 9 (10%) 15 (16%)
## Total 94 93
plot(rst.data, opt = "missing", cols = c("blue", "gray"));
plot(rst.data, opt = "KM");
To fit the imputation model to data observed from the completers, i.e. the subjects who were alive at the end of the study without missing data, the class IDEMDATA object needs to be passed to the function imFitModel as parameters. The result has class name IDEMFIT, which will be passed to imputation functions.
rst.fit <- imFitModel(rst.data);
The goodness of fit diagnostics plots can be generated by the S3 plot method implemented for class IDEMFIT:
plot(rst.fit, mfrow=c(2,4));
The MCMC sampling is primarily done by rstan. It is suggested that the convergence of the MCMC chains should be checked. This can be done by the imImpSingle function which imputes missing data for an individual subject under the benchmark assumption.
rst.mixing <- imImpSingle(abc[1,], rst.fit, chains = 4, iter = 2000, warmup = 1000);
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## Iteration: 1 / 2000 [ 0%] (Warmup)
## Iteration: 200 / 2000 [ 10%] (Warmup)
## Iteration: 400 / 2000 [ 20%] (Warmup)
## Iteration: 600 / 2000 [ 30%] (Warmup)
## Iteration: 800 / 2000 [ 40%] (Warmup)
## Iteration: 1000 / 2000 [ 50%] (Warmup)
## Iteration: 1001 / 2000 [ 50%] (Sampling)
## Iteration: 1200 / 2000 [ 60%] (Sampling)
## Iteration: 1400 / 2000 [ 70%] (Sampling)
## Iteration: 1600 / 2000 [ 80%] (Sampling)
## Iteration: 1800 / 2000 [ 90%] (Sampling)
## Iteration: 2000 / 2000 [100%] (Sampling)
##
## Elapsed Time: 0.02796 seconds (Warm-up)
## 0.028047 seconds (Sampling)
## 0.056007 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## Iteration: 1 / 2000 [ 0%] (Warmup)
## Iteration: 200 / 2000 [ 10%] (Warmup)
## Iteration: 400 / 2000 [ 20%] (Warmup)
## Iteration: 600 / 2000 [ 30%] (Warmup)
## Iteration: 800 / 2000 [ 40%] (Warmup)
## Iteration: 1000 / 2000 [ 50%] (Warmup)
## Iteration: 1001 / 2000 [ 50%] (Sampling)
## Iteration: 1200 / 2000 [ 60%] (Sampling)
## Iteration: 1400 / 2000 [ 70%] (Sampling)
## Iteration: 1600 / 2000 [ 80%] (Sampling)
## Iteration: 1800 / 2000 [ 90%] (Sampling)
## Iteration: 2000 / 2000 [100%] (Sampling)
##
## Elapsed Time: 0.027989 seconds (Warm-up)
## 0.02727 seconds (Sampling)
## 0.055259 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## Iteration: 1 / 2000 [ 0%] (Warmup)
## Iteration: 200 / 2000 [ 10%] (Warmup)
## Iteration: 400 / 2000 [ 20%] (Warmup)
## Iteration: 600 / 2000 [ 30%] (Warmup)
## Iteration: 800 / 2000 [ 40%] (Warmup)
## Iteration: 1000 / 2000 [ 50%] (Warmup)
## Iteration: 1001 / 2000 [ 50%] (Sampling)
## Iteration: 1200 / 2000 [ 60%] (Sampling)
## Iteration: 1400 / 2000 [ 70%] (Sampling)
## Iteration: 1600 / 2000 [ 80%] (Sampling)
## Iteration: 1800 / 2000 [ 90%] (Sampling)
## Iteration: 2000 / 2000 [100%] (Sampling)
##
## Elapsed Time: 0.028738 seconds (Warm-up)
## 0.028857 seconds (Sampling)
## 0.057595 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## Iteration: 1 / 2000 [ 0%] (Warmup)
## Iteration: 200 / 2000 [ 10%] (Warmup)
## Iteration: 400 / 2000 [ 20%] (Warmup)
## Iteration: 600 / 2000 [ 30%] (Warmup)
## Iteration: 800 / 2000 [ 40%] (Warmup)
## Iteration: 1000 / 2000 [ 50%] (Warmup)
## Iteration: 1001 / 2000 [ 50%] (Sampling)
## Iteration: 1200 / 2000 [ 60%] (Sampling)
## Iteration: 1400 / 2000 [ 70%] (Sampling)
## Iteration: 1600 / 2000 [ 80%] (Sampling)
## Iteration: 1800 / 2000 [ 90%] (Sampling)
## Iteration: 2000 / 2000 [100%] (Sampling)
##
## Elapsed Time: 0.030755 seconds (Warm-up)
## 0.02845 seconds (Sampling)
## 0.059205 seconds (Total)
plot(rst.mixing);
The following code shows how to use imImpAll to get the imputed complete datasets under benchmark assmption delta=0 and for sensitivity analysis. We use 300 iterations to reduce the computation time.
rst.imp <- imImpAll(rst.fit, deltas=c(-0.25,0,0.25),
normal=TRUE, chains = 4, iter = 300, warmup = 100);
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
## trying deprecated constructor; please alert package maintainer
rst.imp
The result from imIMPALL is class IDEMFIT. Density plots the imputed outcomes and the imputed functional endpoint can be generated by the S3 plot method associated with class IDEMFIT.
plot(rst.imp, opt = "imputed", deltas = c(-0.25,0,0.25), xlim=c(0,100), endp=FALSE);
plot(rst.imp, opt = "imputed", deltas = c(-0.25,0,0.25), xlim=c(0,100), endp=TRUE);
Treatment-specific cumulative distribution functions of the composite endpoint, where the values of the composite endpoint are labeled according to the survival time and functional endpoint among survivors, can be plotted by the S3 plot method of class IDEMFIT.
plot(rst.imp, delta=0);
The function imInfer implements bootstrap analysis for hypothesis testing, point estimation and confidence intervals of the treatment effects.
For illustration, we run 2 bootstrap samples by the following code:
rst.test <- imInfer(rst.imp, n.boot = 2);
## ---- Bootstrap 1
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004014 seconds (Warm-up)
## 0.006942 seconds (Sampling)
## 0.010956 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003351 seconds (Warm-up)
## 0.007114 seconds (Sampling)
## 0.010465 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003569 seconds (Warm-up)
## 0.007717 seconds (Sampling)
## 0.011286 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004043 seconds (Warm-up)
## 0.007451 seconds (Sampling)
## 0.011494 seconds (Total)
##
## [1] 1
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004329 seconds (Warm-up)
## 0.007341 seconds (Sampling)
## 0.01167 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003579 seconds (Warm-up)
## 0.007267 seconds (Sampling)
## 0.010846 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003602 seconds (Warm-up)
## 0.006834 seconds (Sampling)
## 0.010436 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003739 seconds (Warm-up)
## 0.007238 seconds (Sampling)
## 0.010977 seconds (Total)
##
## [1] 2
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.008934 seconds (Warm-up)
## 0.013873 seconds (Sampling)
## 0.022807 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00785 seconds (Warm-up)
## 0.016001 seconds (Sampling)
## 0.023851 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006473 seconds (Warm-up)
## 0.014636 seconds (Sampling)
## 0.021109 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006747 seconds (Warm-up)
## 0.013343 seconds (Sampling)
## 0.02009 seconds (Total)
##
## [1] 3
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006929 seconds (Warm-up)
## 0.013685 seconds (Sampling)
## 0.020614 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006505 seconds (Warm-up)
## 0.01384 seconds (Sampling)
## 0.020345 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 2.2e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.22 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007308 seconds (Warm-up)
## 0.012694 seconds (Sampling)
## 0.020002 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005865 seconds (Warm-up)
## 0.011882 seconds (Sampling)
## 0.017747 seconds (Total)
##
## [1] 4
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00418 seconds (Warm-up)
## 0.006847 seconds (Sampling)
## 0.011027 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003653 seconds (Warm-up)
## 0.011772 seconds (Sampling)
## 0.015425 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003517 seconds (Warm-up)
## 0.007393 seconds (Sampling)
## 0.01091 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003556 seconds (Warm-up)
## 0.007058 seconds (Sampling)
## 0.010614 seconds (Total)
##
## [1] 5
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.010664 seconds (Warm-up)
## 0.015288 seconds (Sampling)
## 0.025952 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007208 seconds (Warm-up)
## 0.014459 seconds (Sampling)
## 0.021667 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006487 seconds (Warm-up)
## 0.012592 seconds (Sampling)
## 0.019079 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006968 seconds (Warm-up)
## 0.013127 seconds (Sampling)
## 0.020095 seconds (Total)
##
## [1] 6
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006743 seconds (Warm-up)
## 0.014116 seconds (Sampling)
## 0.020859 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007215 seconds (Warm-up)
## 0.012119 seconds (Sampling)
## 0.019334 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006853 seconds (Warm-up)
## 0.013858 seconds (Sampling)
## 0.020711 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007386 seconds (Warm-up)
## 0.015199 seconds (Sampling)
## 0.022585 seconds (Total)
##
## [1] 7
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006713 seconds (Warm-up)
## 0.014139 seconds (Sampling)
## 0.020852 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006833 seconds (Warm-up)
## 0.014267 seconds (Sampling)
## 0.0211 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006507 seconds (Warm-up)
## 0.012207 seconds (Sampling)
## 0.018714 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007573 seconds (Warm-up)
## 0.014672 seconds (Sampling)
## 0.022245 seconds (Total)
##
## [1] 8
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006379 seconds (Warm-up)
## 0.012347 seconds (Sampling)
## 0.018726 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007302 seconds (Warm-up)
## 0.013433 seconds (Sampling)
## 0.020735 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007073 seconds (Warm-up)
## 0.013598 seconds (Sampling)
## 0.020671 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006654 seconds (Warm-up)
## 0.013042 seconds (Sampling)
## 0.019696 seconds (Total)
##
## [1] 9
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007211 seconds (Warm-up)
## 0.012936 seconds (Sampling)
## 0.020147 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007715 seconds (Warm-up)
## 0.015532 seconds (Sampling)
## 0.023247 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006845 seconds (Warm-up)
## 0.013566 seconds (Sampling)
## 0.020411 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00682 seconds (Warm-up)
## 0.012884 seconds (Sampling)
## 0.019704 seconds (Total)
##
## [1] 10
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003931 seconds (Warm-up)
## 0.007668 seconds (Sampling)
## 0.011599 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003548 seconds (Warm-up)
## 0.007169 seconds (Sampling)
## 0.010717 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003876 seconds (Warm-up)
## 0.00743 seconds (Sampling)
## 0.011306 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003385 seconds (Warm-up)
## 0.008022 seconds (Sampling)
## 0.011407 seconds (Total)
##
## [1] 11
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004583 seconds (Warm-up)
## 0.007535 seconds (Sampling)
## 0.012118 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003571 seconds (Warm-up)
## 0.007826 seconds (Sampling)
## 0.011397 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00373 seconds (Warm-up)
## 0.007362 seconds (Sampling)
## 0.011092 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00398 seconds (Warm-up)
## 0.007169 seconds (Sampling)
## 0.011149 seconds (Total)
##
## [1] 12
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007823 seconds (Warm-up)
## 0.012057 seconds (Sampling)
## 0.01988 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006664 seconds (Warm-up)
## 0.012327 seconds (Sampling)
## 0.018991 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00669 seconds (Warm-up)
## 0.012728 seconds (Sampling)
## 0.019418 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006391 seconds (Warm-up)
## 0.013426 seconds (Sampling)
## 0.019817 seconds (Total)
##
## [1] 13
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004145 seconds (Warm-up)
## 0.007284 seconds (Sampling)
## 0.011429 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003646 seconds (Warm-up)
## 0.007071 seconds (Sampling)
## 0.010717 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.0036 seconds (Warm-up)
## 0.007294 seconds (Sampling)
## 0.010894 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004417 seconds (Warm-up)
## 0.007397 seconds (Sampling)
## 0.011814 seconds (Total)
##
## [1] 14
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003766 seconds (Warm-up)
## 0.007206 seconds (Sampling)
## 0.010972 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.2e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.12 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003789 seconds (Warm-up)
## 0.007192 seconds (Sampling)
## 0.010981 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003523 seconds (Warm-up)
## 0.00804 seconds (Sampling)
## 0.011563 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003922 seconds (Warm-up)
## 0.007788 seconds (Sampling)
## 0.01171 seconds (Total)
##
## [1] 15
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007491 seconds (Warm-up)
## 0.015302 seconds (Sampling)
## 0.022793 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006847 seconds (Warm-up)
## 0.013833 seconds (Sampling)
## 0.02068 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006891 seconds (Warm-up)
## 0.01248 seconds (Sampling)
## 0.019371 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006833 seconds (Warm-up)
## 0.013151 seconds (Sampling)
## 0.019984 seconds (Total)
##
## [1] 16
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004064 seconds (Warm-up)
## 0.007179 seconds (Sampling)
## 0.011243 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003539 seconds (Warm-up)
## 0.007261 seconds (Sampling)
## 0.0108 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003632 seconds (Warm-up)
## 0.007821 seconds (Sampling)
## 0.011453 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.0036 seconds (Warm-up)
## 0.007315 seconds (Sampling)
## 0.010915 seconds (Total)
##
## [1] 17
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007082 seconds (Warm-up)
## 0.012532 seconds (Sampling)
## 0.019614 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007352 seconds (Warm-up)
## 0.013409 seconds (Sampling)
## 0.020761 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006299 seconds (Warm-up)
## 0.014013 seconds (Sampling)
## 0.020312 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006866 seconds (Warm-up)
## 0.014268 seconds (Sampling)
## 0.021134 seconds (Total)
##
## [1] 18
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004577 seconds (Warm-up)
## 0.007617 seconds (Sampling)
## 0.012194 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003889 seconds (Warm-up)
## 0.007606 seconds (Sampling)
## 0.011495 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003456 seconds (Warm-up)
## 0.007299 seconds (Sampling)
## 0.010755 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003503 seconds (Warm-up)
## 0.007317 seconds (Sampling)
## 0.01082 seconds (Total)
##
## [1] 19
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006508 seconds (Warm-up)
## 0.01158 seconds (Sampling)
## 0.018088 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005382 seconds (Warm-up)
## 0.010328 seconds (Sampling)
## 0.01571 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006855 seconds (Warm-up)
## 0.010168 seconds (Sampling)
## 0.017023 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005448 seconds (Warm-up)
## 0.010905 seconds (Sampling)
## 0.016353 seconds (Total)
##
## [1] 20
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006174 seconds (Warm-up)
## 0.010973 seconds (Sampling)
## 0.017147 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00513 seconds (Warm-up)
## 0.01153 seconds (Sampling)
## 0.01666 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005269 seconds (Warm-up)
## 0.009965 seconds (Sampling)
## 0.015234 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005468 seconds (Warm-up)
## 0.010468 seconds (Sampling)
## 0.015936 seconds (Total)
##
## [1] 21
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004008 seconds (Warm-up)
## 0.007442 seconds (Sampling)
## 0.01145 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00369 seconds (Warm-up)
## 0.007198 seconds (Sampling)
## 0.010888 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003738 seconds (Warm-up)
## 0.007108 seconds (Sampling)
## 0.010846 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003489 seconds (Warm-up)
## 0.007224 seconds (Sampling)
## 0.010713 seconds (Total)
##
## [1] 22
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006151 seconds (Warm-up)
## 0.010183 seconds (Sampling)
## 0.016334 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005702 seconds (Warm-up)
## 0.013441 seconds (Sampling)
## 0.019143 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00551 seconds (Warm-up)
## 0.010249 seconds (Sampling)
## 0.015759 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005496 seconds (Warm-up)
## 0.010855 seconds (Sampling)
## 0.016351 seconds (Total)
##
## [1] 23
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006426 seconds (Warm-up)
## 0.011018 seconds (Sampling)
## 0.017444 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005308 seconds (Warm-up)
## 0.010251 seconds (Sampling)
## 0.015559 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005847 seconds (Warm-up)
## 0.012371 seconds (Sampling)
## 0.018218 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006138 seconds (Warm-up)
## 0.012361 seconds (Sampling)
## 0.018499 seconds (Total)
##
## [1] 24
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.6e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.16 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006319 seconds (Warm-up)
## 0.011051 seconds (Sampling)
## 0.01737 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005613 seconds (Warm-up)
## 0.010399 seconds (Sampling)
## 0.016012 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005983 seconds (Warm-up)
## 0.01181 seconds (Sampling)
## 0.017793 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004952 seconds (Warm-up)
## 0.011042 seconds (Sampling)
## 0.015994 seconds (Total)
##
## [1] 25
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004968 seconds (Warm-up)
## 0.007395 seconds (Sampling)
## 0.012363 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.0038 seconds (Warm-up)
## 0.007699 seconds (Sampling)
## 0.011499 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003763 seconds (Warm-up)
## 0.007486 seconds (Sampling)
## 0.011249 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003638 seconds (Warm-up)
## 0.008166 seconds (Sampling)
## 0.011804 seconds (Total)
##
## [1] 26
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004466 seconds (Warm-up)
## 0.008409 seconds (Sampling)
## 0.012875 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003996 seconds (Warm-up)
## 0.007668 seconds (Sampling)
## 0.011664 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003773 seconds (Warm-up)
## 0.00794 seconds (Sampling)
## 0.011713 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00371 seconds (Warm-up)
## 0.007421 seconds (Sampling)
## 0.011131 seconds (Total)
##
## [1] 27
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005906 seconds (Warm-up)
## 0.01044 seconds (Sampling)
## 0.016346 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005924 seconds (Warm-up)
## 0.01048 seconds (Sampling)
## 0.016404 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005297 seconds (Warm-up)
## 0.011114 seconds (Sampling)
## 0.016411 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005623 seconds (Warm-up)
## 0.011095 seconds (Sampling)
## 0.016718 seconds (Total)
##
## [1] 28
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005948 seconds (Warm-up)
## 0.010575 seconds (Sampling)
## 0.016523 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006071 seconds (Warm-up)
## 0.012168 seconds (Sampling)
## 0.018239 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005875 seconds (Warm-up)
## 0.011483 seconds (Sampling)
## 0.017358 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005371 seconds (Warm-up)
## 0.009897 seconds (Sampling)
## 0.015268 seconds (Total)
##
## [1] 29
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005994 seconds (Warm-up)
## 0.011083 seconds (Sampling)
## 0.017077 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005694 seconds (Warm-up)
## 0.010976 seconds (Sampling)
## 0.01667 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00545 seconds (Warm-up)
## 0.01047 seconds (Sampling)
## 0.01592 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005612 seconds (Warm-up)
## 0.011538 seconds (Sampling)
## 0.01715 seconds (Total)
##
## [1] 30
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006039 seconds (Warm-up)
## 0.01167 seconds (Sampling)
## 0.017709 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005413 seconds (Warm-up)
## 0.011178 seconds (Sampling)
## 0.016591 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00545 seconds (Warm-up)
## 0.010992 seconds (Sampling)
## 0.016442 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006235 seconds (Warm-up)
## 0.010675 seconds (Sampling)
## 0.01691 seconds (Total)
##
## [1] 31
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005032 seconds (Warm-up)
## 0.010706 seconds (Sampling)
## 0.015738 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005291 seconds (Warm-up)
## 0.01029 seconds (Sampling)
## 0.015581 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005567 seconds (Warm-up)
## 0.010695 seconds (Sampling)
## 0.016262 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005491 seconds (Warm-up)
## 0.011345 seconds (Sampling)
## 0.016836 seconds (Total)
##
## [1] 32
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003741 seconds (Warm-up)
## 0.007112 seconds (Sampling)
## 0.010853 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003674 seconds (Warm-up)
## 0.007574 seconds (Sampling)
## 0.011248 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003847 seconds (Warm-up)
## 0.007621 seconds (Sampling)
## 0.011468 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00373 seconds (Warm-up)
## 0.007556 seconds (Sampling)
## 0.011286 seconds (Total)
##
## [1] 33
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004045 seconds (Warm-up)
## 0.007581 seconds (Sampling)
## 0.011626 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.6e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.16 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003978 seconds (Warm-up)
## 0.007474 seconds (Sampling)
## 0.011452 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003679 seconds (Warm-up)
## 0.007205 seconds (Sampling)
## 0.010884 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003895 seconds (Warm-up)
## 0.007668 seconds (Sampling)
## 0.011563 seconds (Total)
##
## [1] 34
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005427 seconds (Warm-up)
## 0.011028 seconds (Sampling)
## 0.016455 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005723 seconds (Warm-up)
## 0.010962 seconds (Sampling)
## 0.016685 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005934 seconds (Warm-up)
## 0.010329 seconds (Sampling)
## 0.016263 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005047 seconds (Warm-up)
## 0.010299 seconds (Sampling)
## 0.015346 seconds (Total)
##
## [1] 35
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004035 seconds (Warm-up)
## 0.0073 seconds (Sampling)
## 0.011335 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003768 seconds (Warm-up)
## 0.007114 seconds (Sampling)
## 0.010882 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003674 seconds (Warm-up)
## 0.008043 seconds (Sampling)
## 0.011717 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003727 seconds (Warm-up)
## 0.007257 seconds (Sampling)
## 0.010984 seconds (Total)
##
## [1] 36
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003847 seconds (Warm-up)
## 0.007454 seconds (Sampling)
## 0.011301 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003623 seconds (Warm-up)
## 0.008069 seconds (Sampling)
## 0.011692 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00372 seconds (Warm-up)
## 0.007405 seconds (Sampling)
## 0.011125 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00377 seconds (Warm-up)
## 0.007444 seconds (Sampling)
## 0.011214 seconds (Total)
##
## [1] 37
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006067 seconds (Warm-up)
## 0.011034 seconds (Sampling)
## 0.017101 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005504 seconds (Warm-up)
## 0.011734 seconds (Sampling)
## 0.017238 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006119 seconds (Warm-up)
## 0.011547 seconds (Sampling)
## 0.017666 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006971 seconds (Warm-up)
## 0.011718 seconds (Sampling)
## 0.018689 seconds (Total)
##
## [1] 38
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005894 seconds (Warm-up)
## 0.011637 seconds (Sampling)
## 0.017531 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005648 seconds (Warm-up)
## 0.012041 seconds (Sampling)
## 0.017689 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005561 seconds (Warm-up)
## 0.010537 seconds (Sampling)
## 0.016098 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005353 seconds (Warm-up)
## 0.011231 seconds (Sampling)
## 0.016584 seconds (Total)
##
## [1] 39
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006178 seconds (Warm-up)
## 0.010773 seconds (Sampling)
## 0.016951 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006108 seconds (Warm-up)
## 0.010866 seconds (Sampling)
## 0.016974 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005558 seconds (Warm-up)
## 0.010832 seconds (Sampling)
## 0.01639 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005372 seconds (Warm-up)
## 0.010856 seconds (Sampling)
## 0.016228 seconds (Total)
##
## [1] 40
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005779 seconds (Warm-up)
## 0.011917 seconds (Sampling)
## 0.017696 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005673 seconds (Warm-up)
## 0.011355 seconds (Sampling)
## 0.017028 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005569 seconds (Warm-up)
## 0.010548 seconds (Sampling)
## 0.016117 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005066 seconds (Warm-up)
## 0.011097 seconds (Sampling)
## 0.016163 seconds (Total)
##
## [1] 41
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.0045 seconds (Warm-up)
## 0.007324 seconds (Sampling)
## 0.011824 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004549 seconds (Warm-up)
## 0.007249 seconds (Sampling)
## 0.011798 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003646 seconds (Warm-up)
## 0.0073 seconds (Sampling)
## 0.010946 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003978 seconds (Warm-up)
## 0.007352 seconds (Sampling)
## 0.01133 seconds (Total)
##
## [1] 42
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007023 seconds (Warm-up)
## 0.01006 seconds (Sampling)
## 0.017083 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005405 seconds (Warm-up)
## 0.010541 seconds (Sampling)
## 0.015946 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006054 seconds (Warm-up)
## 0.010956 seconds (Sampling)
## 0.01701 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005508 seconds (Warm-up)
## 0.011168 seconds (Sampling)
## 0.016676 seconds (Total)
##
## [1] 43
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006057 seconds (Warm-up)
## 0.011176 seconds (Sampling)
## 0.017233 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005581 seconds (Warm-up)
## 0.010598 seconds (Sampling)
## 0.016179 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005353 seconds (Warm-up)
## 0.011351 seconds (Sampling)
## 0.016704 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005396 seconds (Warm-up)
## 0.010879 seconds (Sampling)
## 0.016275 seconds (Total)
##
## [1] 44
## ---- Bootstrap 2
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007198 seconds (Warm-up)
## 0.011316 seconds (Sampling)
## 0.018514 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004859 seconds (Warm-up)
## 0.010784 seconds (Sampling)
## 0.015643 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005339 seconds (Warm-up)
## 0.010932 seconds (Sampling)
## 0.016271 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005855 seconds (Warm-up)
## 0.010932 seconds (Sampling)
## 0.016787 seconds (Total)
##
## [1] 1
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005537 seconds (Warm-up)
## 0.010438 seconds (Sampling)
## 0.015975 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00643 seconds (Warm-up)
## 0.010574 seconds (Sampling)
## 0.017004 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005401 seconds (Warm-up)
## 0.010419 seconds (Sampling)
## 0.01582 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005509 seconds (Warm-up)
## 0.010473 seconds (Sampling)
## 0.015982 seconds (Total)
##
## [1] 2
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005601 seconds (Warm-up)
## 0.010234 seconds (Sampling)
## 0.015835 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00545 seconds (Warm-up)
## 0.012905 seconds (Sampling)
## 0.018355 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005639 seconds (Warm-up)
## 0.01101 seconds (Sampling)
## 0.016649 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005006 seconds (Warm-up)
## 0.014468 seconds (Sampling)
## 0.019474 seconds (Total)
##
## [1] 3
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.009835 seconds (Warm-up)
## 0.012822 seconds (Sampling)
## 0.022657 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00846 seconds (Warm-up)
## 0.01579 seconds (Sampling)
## 0.02425 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007229 seconds (Warm-up)
## 0.011618 seconds (Sampling)
## 0.018847 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.009422 seconds (Warm-up)
## 0.019782 seconds (Sampling)
## 0.029204 seconds (Total)
##
## [1] 4
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.008969 seconds (Warm-up)
## 0.019652 seconds (Sampling)
## 0.028621 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 7e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.013746 seconds (Warm-up)
## 0.015479 seconds (Sampling)
## 0.029225 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006143 seconds (Warm-up)
## 0.011823 seconds (Sampling)
## 0.017966 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006001 seconds (Warm-up)
## 0.012218 seconds (Sampling)
## 0.018219 seconds (Total)
##
## [1] 5
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003822 seconds (Warm-up)
## 0.007436 seconds (Sampling)
## 0.011258 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004369 seconds (Warm-up)
## 0.008823 seconds (Sampling)
## 0.013192 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003651 seconds (Warm-up)
## 0.008499 seconds (Sampling)
## 0.01215 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004517 seconds (Warm-up)
## 0.012533 seconds (Sampling)
## 0.01705 seconds (Total)
##
## [1] 6
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.008073 seconds (Warm-up)
## 0.007575 seconds (Sampling)
## 0.015648 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003667 seconds (Warm-up)
## 0.007471 seconds (Sampling)
## 0.011138 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004176 seconds (Warm-up)
## 0.008041 seconds (Sampling)
## 0.012217 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003846 seconds (Warm-up)
## 0.00844 seconds (Sampling)
## 0.012286 seconds (Total)
##
## [1] 7
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005888 seconds (Warm-up)
## 0.011722 seconds (Sampling)
## 0.01761 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007169 seconds (Warm-up)
## 0.010511 seconds (Sampling)
## 0.01768 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005799 seconds (Warm-up)
## 0.011098 seconds (Sampling)
## 0.016897 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005182 seconds (Warm-up)
## 0.010786 seconds (Sampling)
## 0.015968 seconds (Total)
##
## [1] 8
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.6e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.16 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005785 seconds (Warm-up)
## 0.009615 seconds (Sampling)
## 0.0154 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005339 seconds (Warm-up)
## 0.010173 seconds (Sampling)
## 0.015512 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00515 seconds (Warm-up)
## 0.010822 seconds (Sampling)
## 0.015972 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005336 seconds (Warm-up)
## 0.014353 seconds (Sampling)
## 0.019689 seconds (Total)
##
## [1] 9
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 7e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007227 seconds (Warm-up)
## 0.009947 seconds (Sampling)
## 0.017174 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003919 seconds (Warm-up)
## 0.007722 seconds (Sampling)
## 0.011641 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006987 seconds (Warm-up)
## 0.00782 seconds (Sampling)
## 0.014807 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004132 seconds (Warm-up)
## 0.00813 seconds (Sampling)
## 0.012262 seconds (Total)
##
## [1] 10
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 7e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005173 seconds (Warm-up)
## 0.011141 seconds (Sampling)
## 0.016314 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006089 seconds (Warm-up)
## 0.009599 seconds (Sampling)
## 0.015688 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005184 seconds (Warm-up)
## 0.01034 seconds (Sampling)
## 0.015524 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006035 seconds (Warm-up)
## 0.010535 seconds (Sampling)
## 0.01657 seconds (Total)
##
## [1] 11
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004145 seconds (Warm-up)
## 0.007663 seconds (Sampling)
## 0.011808 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003625 seconds (Warm-up)
## 0.007538 seconds (Sampling)
## 0.011163 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003932 seconds (Warm-up)
## 0.008734 seconds (Sampling)
## 0.012666 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004011 seconds (Warm-up)
## 0.008812 seconds (Sampling)
## 0.012823 seconds (Total)
##
## [1] 12
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004368 seconds (Warm-up)
## 0.008218 seconds (Sampling)
## 0.012586 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003768 seconds (Warm-up)
## 0.007371 seconds (Sampling)
## 0.011139 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004075 seconds (Warm-up)
## 0.007845 seconds (Sampling)
## 0.01192 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004101 seconds (Warm-up)
## 0.007908 seconds (Sampling)
## 0.012009 seconds (Total)
##
## [1] 13
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00916 seconds (Warm-up)
## 0.009609 seconds (Sampling)
## 0.018769 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00527 seconds (Warm-up)
## 0.010965 seconds (Sampling)
## 0.016235 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005308 seconds (Warm-up)
## 0.011225 seconds (Sampling)
## 0.016533 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005643 seconds (Warm-up)
## 0.01063 seconds (Sampling)
## 0.016273 seconds (Total)
##
## [1] 14
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.6e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.16 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003839 seconds (Warm-up)
## 0.008105 seconds (Sampling)
## 0.011944 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004124 seconds (Warm-up)
## 0.007849 seconds (Sampling)
## 0.011973 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003811 seconds (Warm-up)
## 0.007687 seconds (Sampling)
## 0.011498 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003814 seconds (Warm-up)
## 0.007508 seconds (Sampling)
## 0.011322 seconds (Total)
##
## [1] 15
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.7e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.17 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004295 seconds (Warm-up)
## 0.007865 seconds (Sampling)
## 0.01216 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00379 seconds (Warm-up)
## 0.007358 seconds (Sampling)
## 0.011148 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003858 seconds (Warm-up)
## 0.007348 seconds (Sampling)
## 0.011206 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00465 seconds (Warm-up)
## 0.00785 seconds (Sampling)
## 0.0125 seconds (Total)
##
## [1] 16
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003878 seconds (Warm-up)
## 0.007498 seconds (Sampling)
## 0.011376 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003706 seconds (Warm-up)
## 0.007702 seconds (Sampling)
## 0.011408 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004183 seconds (Warm-up)
## 0.007903 seconds (Sampling)
## 0.012086 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004064 seconds (Warm-up)
## 0.008355 seconds (Sampling)
## 0.012419 seconds (Total)
##
## [1] 17
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006453 seconds (Warm-up)
## 0.015954 seconds (Sampling)
## 0.022407 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005399 seconds (Warm-up)
## 0.01009 seconds (Sampling)
## 0.015489 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005278 seconds (Warm-up)
## 0.01102 seconds (Sampling)
## 0.016298 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005277 seconds (Warm-up)
## 0.009951 seconds (Sampling)
## 0.015228 seconds (Total)
##
## [1] 18
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.9e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.19 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005993 seconds (Warm-up)
## 0.010435 seconds (Sampling)
## 0.016428 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005641 seconds (Warm-up)
## 0.009653 seconds (Sampling)
## 0.015294 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005684 seconds (Warm-up)
## 0.010614 seconds (Sampling)
## 0.016298 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005141 seconds (Warm-up)
## 0.012691 seconds (Sampling)
## 0.017832 seconds (Total)
##
## [1] 19
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005848 seconds (Warm-up)
## 0.009516 seconds (Sampling)
## 0.015364 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005234 seconds (Warm-up)
## 0.011363 seconds (Sampling)
## 0.016597 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006304 seconds (Warm-up)
## 0.010157 seconds (Sampling)
## 0.016461 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005104 seconds (Warm-up)
## 0.010513 seconds (Sampling)
## 0.015617 seconds (Total)
##
## [1] 20
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005432 seconds (Warm-up)
## 0.010458 seconds (Sampling)
## 0.01589 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004974 seconds (Warm-up)
## 0.013214 seconds (Sampling)
## 0.018188 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006276 seconds (Warm-up)
## 0.013458 seconds (Sampling)
## 0.019734 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005002 seconds (Warm-up)
## 0.010508 seconds (Sampling)
## 0.01551 seconds (Total)
##
## [1] 21
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005008 seconds (Warm-up)
## 0.008903 seconds (Sampling)
## 0.013911 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004796 seconds (Warm-up)
## 0.007903 seconds (Sampling)
## 0.012699 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003924 seconds (Warm-up)
## 0.007444 seconds (Sampling)
## 0.011368 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00394 seconds (Warm-up)
## 0.011055 seconds (Sampling)
## 0.014995 seconds (Total)
##
## [1] 22
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005427 seconds (Warm-up)
## 0.014016 seconds (Sampling)
## 0.019443 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005019 seconds (Warm-up)
## 0.011416 seconds (Sampling)
## 0.016435 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006268 seconds (Warm-up)
## 0.011243 seconds (Sampling)
## 0.017511 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005583 seconds (Warm-up)
## 0.010331 seconds (Sampling)
## 0.015914 seconds (Total)
##
## [1] 23
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005331 seconds (Warm-up)
## 0.010369 seconds (Sampling)
## 0.0157 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005613 seconds (Warm-up)
## 0.010302 seconds (Sampling)
## 0.015915 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00536 seconds (Warm-up)
## 0.010141 seconds (Sampling)
## 0.015501 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005316 seconds (Warm-up)
## 0.010167 seconds (Sampling)
## 0.015483 seconds (Total)
##
## [1] 24
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004047 seconds (Warm-up)
## 0.011594 seconds (Sampling)
## 0.015641 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003755 seconds (Warm-up)
## 0.007947 seconds (Sampling)
## 0.011702 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004163 seconds (Warm-up)
## 0.008264 seconds (Sampling)
## 0.012427 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003952 seconds (Warm-up)
## 0.008886 seconds (Sampling)
## 0.012838 seconds (Total)
##
## [1] 25
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005554 seconds (Warm-up)
## 0.009904 seconds (Sampling)
## 0.015458 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005192 seconds (Warm-up)
## 0.011433 seconds (Sampling)
## 0.016625 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.6e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.16 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005165 seconds (Warm-up)
## 0.010335 seconds (Sampling)
## 0.0155 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005245 seconds (Warm-up)
## 0.012642 seconds (Sampling)
## 0.017887 seconds (Total)
##
## [1] 26
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005884 seconds (Warm-up)
## 0.010319 seconds (Sampling)
## 0.016203 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005054 seconds (Warm-up)
## 0.010497 seconds (Sampling)
## 0.015551 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005151 seconds (Warm-up)
## 0.014836 seconds (Sampling)
## 0.019987 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00537 seconds (Warm-up)
## 0.009911 seconds (Sampling)
## 0.015281 seconds (Total)
##
## [1] 27
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 2e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.2 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005531 seconds (Warm-up)
## 0.018719 seconds (Sampling)
## 0.02425 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.2e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.12 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005138 seconds (Warm-up)
## 0.010307 seconds (Sampling)
## 0.015445 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005489 seconds (Warm-up)
## 0.010114 seconds (Sampling)
## 0.015603 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004924 seconds (Warm-up)
## 0.009439 seconds (Sampling)
## 0.014363 seconds (Total)
##
## [1] 28
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005643 seconds (Warm-up)
## 0.007861 seconds (Sampling)
## 0.013504 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004475 seconds (Warm-up)
## 0.007968 seconds (Sampling)
## 0.012443 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004352 seconds (Warm-up)
## 0.008088 seconds (Sampling)
## 0.01244 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003823 seconds (Warm-up)
## 0.00772 seconds (Sampling)
## 0.011543 seconds (Total)
##
## [1] 29
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006124 seconds (Warm-up)
## 0.009698 seconds (Sampling)
## 0.015822 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005206 seconds (Warm-up)
## 0.010644 seconds (Sampling)
## 0.01585 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005854 seconds (Warm-up)
## 0.010716 seconds (Sampling)
## 0.01657 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005245 seconds (Warm-up)
## 0.009828 seconds (Sampling)
## 0.015073 seconds (Total)
##
## [1] 30
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.0049 seconds (Warm-up)
## 0.010383 seconds (Sampling)
## 0.015283 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005216 seconds (Warm-up)
## 0.011523 seconds (Sampling)
## 0.016739 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005456 seconds (Warm-up)
## 0.010601 seconds (Sampling)
## 0.016057 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005144 seconds (Warm-up)
## 0.010701 seconds (Sampling)
## 0.015845 seconds (Total)
##
## [1] 31
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005811 seconds (Warm-up)
## 0.010971 seconds (Sampling)
## 0.016782 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00495 seconds (Warm-up)
## 0.009911 seconds (Sampling)
## 0.014861 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005938 seconds (Warm-up)
## 0.009608 seconds (Sampling)
## 0.015546 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005295 seconds (Warm-up)
## 0.010346 seconds (Sampling)
## 0.015641 seconds (Total)
##
## [1] 32
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 7e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.07 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005005 seconds (Warm-up)
## 0.010452 seconds (Sampling)
## 0.015457 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005686 seconds (Warm-up)
## 0.009854 seconds (Sampling)
## 0.01554 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005121 seconds (Warm-up)
## 0.010226 seconds (Sampling)
## 0.015347 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005336 seconds (Warm-up)
## 0.010684 seconds (Sampling)
## 0.01602 seconds (Total)
##
## [1] 33
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004747 seconds (Warm-up)
## 0.01194 seconds (Sampling)
## 0.016687 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004005 seconds (Warm-up)
## 0.007753 seconds (Sampling)
## 0.011758 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003776 seconds (Warm-up)
## 0.007685 seconds (Sampling)
## 0.011461 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004264 seconds (Warm-up)
## 0.008311 seconds (Sampling)
## 0.012575 seconds (Total)
##
## [1] 34
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004129 seconds (Warm-up)
## 0.007702 seconds (Sampling)
## 0.011831 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004086 seconds (Warm-up)
## 0.007695 seconds (Sampling)
## 0.011781 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003888 seconds (Warm-up)
## 0.008375 seconds (Sampling)
## 0.012263 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.003896 seconds (Warm-up)
## 0.008255 seconds (Sampling)
## 0.012151 seconds (Total)
##
## [1] 35
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00593 seconds (Warm-up)
## 0.010935 seconds (Sampling)
## 0.016865 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 6e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.06 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.007071 seconds (Warm-up)
## 0.01107 seconds (Sampling)
## 0.018141 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005156 seconds (Warm-up)
## 0.011012 seconds (Sampling)
## 0.016168 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.00555 seconds (Warm-up)
## 0.010708 seconds (Sampling)
## 0.016258 seconds (Total)
##
## [1] 36
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.4e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.14 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005863 seconds (Warm-up)
## 0.010838 seconds (Sampling)
## 0.016701 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005419 seconds (Warm-up)
## 0.009936 seconds (Sampling)
## 0.015355 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.004982 seconds (Warm-up)
## 0.010865 seconds (Sampling)
## 0.015847 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005761 seconds (Warm-up)
## 0.010602 seconds (Sampling)
## 0.016363 seconds (Total)
##
## [1] 37
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006219 seconds (Warm-up)
## 0.010274 seconds (Sampling)
## 0.016493 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 5e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.05 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005608 seconds (Warm-up)
## 0.01415 seconds (Sampling)
## 0.019758 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005182 seconds (Warm-up)
## 0.010772 seconds (Sampling)
## 0.015954 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 1.3e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.13 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005234 seconds (Warm-up)
## 0.010649 seconds (Sampling)
## 0.015883 seconds (Total)
##
## [1] 38
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006023 seconds (Warm-up)
## 0.009698 seconds (Sampling)
## 0.015721 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005161 seconds (Warm-up)
## 0.010779 seconds (Sampling)
## 0.01594 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 3e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.03 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005129 seconds (Warm-up)
## 0.010784 seconds (Sampling)
## 0.015913 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005298 seconds (Warm-up)
## 0.013868 seconds (Sampling)
## 0.019166 seconds (Total)
##
## [1] 39
## trying deprecated constructor; please alert package maintainer
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.5e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.15 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005514 seconds (Warm-up)
## 0.010441 seconds (Sampling)
## 0.015955 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 2).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005465 seconds (Warm-up)
## 0.010573 seconds (Sampling)
## 0.016038 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005459 seconds (Warm-up)
## 0.010775 seconds (Sampling)
## 0.016234 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## Gradient evaluation took 4e-06 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.005157 seconds (Warm-up)
## 0.010452 seconds (Sampling)
## 0.015609 seconds (Total)
##
## [1] 40
rst.test
##
## The sensitivity parameters considered were
## [1] -0.25 0.00 0.25
##
## Treatment effect (theta) under different
## sensitivity parameters are:
##
## Delta0 Delta1 Theta SD Q2.5 Q97.5
## [1,] -0.25 -0.25 -0.16266301 0.0008897477 -0.16440688 -0.16091913
## [2,] 0.00 -0.25 -0.13040494 0.0102078330 -0.15041193 -0.11039796
## [3,] 0.25 -0.25 -0.08679936 0.0013103557 -0.08936761 -0.08423111
## [4,] -0.25 0.00 -0.23088538 0.0133462158 -0.25704348 -0.20472728
## [5,] 0.00 0.00 -0.19281629 0.0296205106 -0.25087142 -0.13476116
## [6,] 0.25 0.00 -0.13534660 0.0210142235 -0.17653372 -0.09415948
## [7,] -0.25 0.25 -0.28931595 0.0014074191 -0.29207444 -0.28655746
## [8,] 0.00 0.25 -0.26039808 0.0126991266 -0.28528791 -0.23550825
## [9,] 0.25 0.25 -0.20901396 0.0116961382 -0.23193797 -0.18608995
## PValue
## [1,] 0.000000e+00
## [2,] 2.261832e-37
## [3,] 0.000000e+00
## [4,] 4.729365e-67
## [5,] 7.537466e-11
## [6,] 1.189128e-10
## [7,] 0.000000e+00
## [8,] 1.934890e-93
## [9,] 2.007705e-71
##
## Treatment effect (quantiles) under different
## sensitivity parameters are:
##
## Delta TRT Q QuantY QuantSurv Q2.5 Q97.5 Q2.5_Surv
## 3 -0.25 0 0.5 NA 72 236.00000 236.00000 1
## 8 -0.25 1 0.5 20.21470 NA 28.28173 28.28173 0
## 13 0.00 0 0.5 NA 72 236.00000 236.00000 1
## 18 0.00 1 0.5 29.02872 NA 34.00000 34.00000 0
## 23 0.25 0 0.5 NA 72 236.00000 236.00000 1
## 28 0.25 1 0.5 34.00000 NA 39.25126 39.25126 0
## Q97.5_Surv
## 3 1
## 8 0
## 13 1
## 18 0
## 23 1
## 28 0
##
##
## The hypothesis testing and confidence intervals are
## based on 2 bootstrap samples. Please consider more
## bootstrap samples (e.g. >100) for the validity
## of the results.
A contour plot of p-values in the sensitivity analysis results can be generated by the S3 method of the result returned by imInfer:
plot(rst.test, nlevels = 30, con.v=0.05, zlim=c(0, 0.05));
The idem package provides a web-based GUI for composite endpoint analysis. The GUI can be accessed by
imShiny();