## Loading required package: idem
## Loading required package: Rcpp
## Loading required package: rstan
## Loading required package: ggplot2
## Loading required package: StanHeaders
## rstan (Version 2.15.1, packaged: 2017-04-19 05:03:57 UTC, GitRev: 2e1f913d3ca3)
## For execution on a local, multicore CPU with excess RAM we recommend calling
## rstan_options(auto_write = TRUE)
## options(mc.cores = parallel::detectCores())
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);
print(rst.data);
## [1] "No survival time specified"
## [2] "Endpoint formula error: Error in eval(expr, envir, enclos) : object 'Y3' not found"
## [3] "Upper bound is smaller than some observed outcomes"
## attr(,"class")
## [1] "IDEMERROR"
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 Control Intervention
## 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);
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.1 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.025126 seconds (Warm-up)
## 0.021141 seconds (Sampling)
## 0.046267 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.029054 seconds (Warm-up)
## 0.036942 seconds (Sampling)
## 0.065996 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.029498 seconds (Warm-up)
## 0.026507 seconds (Sampling)
## 0.056005 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!
##
##
## 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.02753 seconds (Warm-up)
## 0.030642 seconds (Sampling)
## 0.058172 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);
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
##
## 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.003583 seconds (Warm-up)
## 0.00682 seconds (Sampling)
## 0.010403 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.00355 seconds (Warm-up)
## 0.007203 seconds (Sampling)
## 0.010753 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## 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.003701 seconds (Warm-up)
## 0.007305 seconds (Sampling)
## 0.011006 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.003336 seconds (Warm-up)
## 0.00688 seconds (Sampling)
## 0.010216 seconds (Total)
##
## [1] 1
##
## 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.004664 seconds (Warm-up)
## 0.009592 seconds (Sampling)
## 0.014256 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.004693 seconds (Warm-up)
## 0.008666 seconds (Sampling)
## 0.013359 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.0051 seconds (Warm-up)
## 0.00865 seconds (Sampling)
## 0.01375 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.004394 seconds (Warm-up)
## 0.008797 seconds (Sampling)
## 0.013191 seconds (Total)
##
## [1] 2
##
## 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.003892 seconds (Warm-up)
## 0.006783 seconds (Sampling)
## 0.010675 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.003845 seconds (Warm-up)
## 0.00712 seconds (Sampling)
## 0.010965 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.003533 seconds (Warm-up)
## 0.007141 seconds (Sampling)
## 0.010674 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.003525 seconds (Warm-up)
## 0.007 seconds (Sampling)
## 0.010525 seconds (Total)
##
## [1] 3
##
## 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.003556 seconds (Warm-up)
## 0.00749 seconds (Sampling)
## 0.011046 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.003568 seconds (Warm-up)
## 0.007001 seconds (Sampling)
## 0.010569 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.003625 seconds (Warm-up)
## 0.007346 seconds (Sampling)
## 0.010971 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.003551 seconds (Warm-up)
## 0.007233 seconds (Sampling)
## 0.010784 seconds (Total)
##
## [1] 4
##
## 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.003759 seconds (Warm-up)
## 0.007162 seconds (Sampling)
## 0.010921 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.003457 seconds (Warm-up)
## 0.007227 seconds (Sampling)
## 0.010684 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.003886 seconds (Warm-up)
## 0.007118 seconds (Sampling)
## 0.011004 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.004269 seconds (Warm-up)
## 0.00722 seconds (Sampling)
## 0.011489 seconds (Total)
##
## [1] 5
##
## 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.003738 seconds (Warm-up)
## 0.006982 seconds (Sampling)
## 0.01072 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.003537 seconds (Warm-up)
## 0.00704 seconds (Sampling)
## 0.010577 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.003648 seconds (Warm-up)
## 0.006897 seconds (Sampling)
## 0.010545 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.00696 seconds (Sampling)
## 0.0109 seconds (Total)
##
## [1] 6
##
## 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.003575 seconds (Warm-up)
## 0.00697 seconds (Sampling)
## 0.010545 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.003494 seconds (Warm-up)
## 0.007632 seconds (Sampling)
## 0.011126 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.004022 seconds (Warm-up)
## 0.00734 seconds (Sampling)
## 0.011362 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.003713 seconds (Warm-up)
## 0.007442 seconds (Sampling)
## 0.011155 seconds (Total)
##
## [1] 7
##
## 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.00468 seconds (Warm-up)
## 0.008792 seconds (Sampling)
## 0.013472 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.004671 seconds (Warm-up)
## 0.008903 seconds (Sampling)
## 0.013574 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.005077 seconds (Warm-up)
## 0.008943 seconds (Sampling)
## 0.01402 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.004584 seconds (Warm-up)
## 0.009047 seconds (Sampling)
## 0.013631 seconds (Total)
##
## [1] 8
##
## 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.005491 seconds (Warm-up)
## 0.008924 seconds (Sampling)
## 0.014415 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.004255 seconds (Warm-up)
## 0.008704 seconds (Sampling)
## 0.012959 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.004336 seconds (Warm-up)
## 0.009258 seconds (Sampling)
## 0.013594 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.004265 seconds (Warm-up)
## 0.008741 seconds (Sampling)
## 0.013006 seconds (Total)
##
## [1] 9
##
## 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.004501 seconds (Warm-up)
## 0.009167 seconds (Sampling)
## 0.013668 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.004452 seconds (Warm-up)
## 0.008746 seconds (Sampling)
## 0.013198 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.004386 seconds (Warm-up)
## 0.009195 seconds (Sampling)
## 0.013581 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.004343 seconds (Warm-up)
## 0.008711 seconds (Sampling)
## 0.013054 seconds (Total)
##
## [1] 10
##
## 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.00436 seconds (Warm-up)
## 0.008966 seconds (Sampling)
## 0.013326 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.004813 seconds (Warm-up)
## 0.008972 seconds (Sampling)
## 0.013785 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.004473 seconds (Warm-up)
## 0.00916 seconds (Sampling)
## 0.013633 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.004886 seconds (Warm-up)
## 0.008982 seconds (Sampling)
## 0.013868 seconds (Total)
##
## [1] 11
##
## 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.004919 seconds (Warm-up)
## 0.009086 seconds (Sampling)
## 0.014005 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.004706 seconds (Warm-up)
## 0.008787 seconds (Sampling)
## 0.013493 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.005179 seconds (Warm-up)
## 0.009429 seconds (Sampling)
## 0.014608 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.004321 seconds (Warm-up)
## 0.008724 seconds (Sampling)
## 0.013045 seconds (Total)
##
## [1] 12
##
## 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.004833 seconds (Warm-up)
## 0.009299 seconds (Sampling)
## 0.014132 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.004852 seconds (Warm-up)
## 0.009007 seconds (Sampling)
## 0.013859 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.004956 seconds (Warm-up)
## 0.011397 seconds (Sampling)
## 0.016353 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.004293 seconds (Warm-up)
## 0.009173 seconds (Sampling)
## 0.013466 seconds (Total)
##
## [1] 13
##
## 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.004502 seconds (Warm-up)
## 0.007167 seconds (Sampling)
## 0.011669 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.003681 seconds (Warm-up)
## 0.00719 seconds (Sampling)
## 0.010871 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.003511 seconds (Warm-up)
## 0.007202 seconds (Sampling)
## 0.010713 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.003737 seconds (Warm-up)
## 0.00778 seconds (Sampling)
## 0.011517 seconds (Total)
##
## [1] 14
##
## 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.005498 seconds (Warm-up)
## 0.01003 seconds (Sampling)
## 0.015528 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.004392 seconds (Warm-up)
## 0.009629 seconds (Sampling)
## 0.014021 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.004546 seconds (Warm-up)
## 0.009681 seconds (Sampling)
## 0.014227 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.004735 seconds (Warm-up)
## 0.009407 seconds (Sampling)
## 0.014142 seconds (Total)
##
## [1] 15
##
## 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.005198 seconds (Warm-up)
## 0.008839 seconds (Sampling)
## 0.014037 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.004588 seconds (Warm-up)
## 0.00869 seconds (Sampling)
## 0.013278 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.004481 seconds (Warm-up)
## 0.008655 seconds (Sampling)
## 0.013136 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.006979 seconds (Warm-up)
## 0.009527 seconds (Sampling)
## 0.016506 seconds (Total)
##
## [1] 16
##
## 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.003668 seconds (Warm-up)
## 0.006762 seconds (Sampling)
## 0.01043 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.00352 seconds (Warm-up)
## 0.007103 seconds (Sampling)
## 0.010623 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.003595 seconds (Warm-up)
## 0.007291 seconds (Sampling)
## 0.010886 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.003615 seconds (Warm-up)
## 0.006948 seconds (Sampling)
## 0.010563 seconds (Total)
##
## [1] 17
##
## 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.00455 seconds (Warm-up)
## 0.008609 seconds (Sampling)
## 0.013159 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.004184 seconds (Warm-up)
## 0.008616 seconds (Sampling)
## 0.0128 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.004877 seconds (Warm-up)
## 0.009099 seconds (Sampling)
## 0.013976 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.00473 seconds (Warm-up)
## 0.00964 seconds (Sampling)
## 0.01437 seconds (Total)
##
## [1] 18
##
## 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.004558 seconds (Warm-up)
## 0.008927 seconds (Sampling)
## 0.013485 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.004696 seconds (Warm-up)
## 0.008748 seconds (Sampling)
## 0.013444 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.005021 seconds (Warm-up)
## 0.008889 seconds (Sampling)
## 0.01391 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.004337 seconds (Warm-up)
## 0.009006 seconds (Sampling)
## 0.013343 seconds (Total)
##
## [1] 19
##
## 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.00389 seconds (Warm-up)
## 0.007514 seconds (Sampling)
## 0.011404 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.003678 seconds (Warm-up)
## 0.007406 seconds (Sampling)
## 0.011084 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.003556 seconds (Warm-up)
## 0.008389 seconds (Sampling)
## 0.011945 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.003588 seconds (Warm-up)
## 0.00748 seconds (Sampling)
## 0.011068 seconds (Total)
##
## [1] 20
##
## 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.005894 seconds (Warm-up)
## 0.013095 seconds (Sampling)
## 0.018989 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.00477 seconds (Warm-up)
## 0.009894 seconds (Sampling)
## 0.014664 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.005433 seconds (Warm-up)
## 0.010724 seconds (Sampling)
## 0.016157 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.004807 seconds (Warm-up)
## 0.009798 seconds (Sampling)
## 0.014605 seconds (Total)
##
## [1] 21
##
## 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.003767 seconds (Warm-up)
## 0.006957 seconds (Sampling)
## 0.010724 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.00356 seconds (Warm-up)
## 0.007564 seconds (Sampling)
## 0.011124 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.003605 seconds (Warm-up)
## 0.007638 seconds (Sampling)
## 0.011243 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.003694 seconds (Warm-up)
## 0.009738 seconds (Sampling)
## 0.013432 seconds (Total)
##
## [1] 22
##
## 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.005342 seconds (Warm-up)
## 0.010026 seconds (Sampling)
## 0.015368 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.00525 seconds (Warm-up)
## 0.010447 seconds (Sampling)
## 0.015697 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.005106 seconds (Warm-up)
## 0.009641 seconds (Sampling)
## 0.014747 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.005087 seconds (Warm-up)
## 0.010035 seconds (Sampling)
## 0.015122 seconds (Total)
##
## [1] 23
##
## 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.00397 seconds (Warm-up)
## 0.007436 seconds (Sampling)
## 0.011406 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.003935 seconds (Warm-up)
## 0.007575 seconds (Sampling)
## 0.01151 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.003612 seconds (Warm-up)
## 0.007367 seconds (Sampling)
## 0.010979 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.00382 seconds (Warm-up)
## 0.011186 seconds (Sampling)
## 0.015006 seconds (Total)
##
## [1] 24
##
## 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.003658 seconds (Warm-up)
## 0.007284 seconds (Sampling)
## 0.010942 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.003767 seconds (Warm-up)
## 0.007146 seconds (Sampling)
## 0.010913 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.003592 seconds (Warm-up)
## 0.007508 seconds (Sampling)
## 0.0111 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.003988 seconds (Warm-up)
## 0.007643 seconds (Sampling)
## 0.011631 seconds (Total)
##
## [1] 25
##
## 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.005469 seconds (Warm-up)
## 0.009353 seconds (Sampling)
## 0.014822 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.004857 seconds (Warm-up)
## 0.009989 seconds (Sampling)
## 0.014846 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.004727 seconds (Warm-up)
## 0.009115 seconds (Sampling)
## 0.013842 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.005452 seconds (Warm-up)
## 0.010137 seconds (Sampling)
## 0.015589 seconds (Total)
##
## [1] 26
##
## 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.003773 seconds (Warm-up)
## 0.007189 seconds (Sampling)
## 0.010962 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.003664 seconds (Warm-up)
## 0.007578 seconds (Sampling)
## 0.011242 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.004653 seconds (Warm-up)
## 0.007523 seconds (Sampling)
## 0.012176 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.003538 seconds (Warm-up)
## 0.006909 seconds (Sampling)
## 0.010447 seconds (Total)
##
## [1] 27
##
## 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.005333 seconds (Warm-up)
## 0.010133 seconds (Sampling)
## 0.015466 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.005448 seconds (Warm-up)
## 0.009508 seconds (Sampling)
## 0.014956 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.004778 seconds (Warm-up)
## 0.009731 seconds (Sampling)
## 0.014509 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.004692 seconds (Warm-up)
## 0.010125 seconds (Sampling)
## 0.014817 seconds (Total)
##
## [1] 28
##
## 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.005392 seconds (Warm-up)
## 0.00906 seconds (Sampling)
## 0.014452 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.004958 seconds (Warm-up)
## 0.009918 seconds (Sampling)
## 0.014876 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.005401 seconds (Warm-up)
## 0.009188 seconds (Sampling)
## 0.014589 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.004971 seconds (Warm-up)
## 0.012475 seconds (Sampling)
## 0.017446 seconds (Total)
##
## [1] 29
##
## 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.00543 seconds (Warm-up)
## 0.009816 seconds (Sampling)
## 0.015246 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.005119 seconds (Warm-up)
## 0.009828 seconds (Sampling)
## 0.014947 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.004863 seconds (Warm-up)
## 0.010175 seconds (Sampling)
## 0.015038 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.005168 seconds (Warm-up)
## 0.009586 seconds (Sampling)
## 0.014754 seconds (Total)
##
## [1] 30
##
## 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.005477 seconds (Warm-up)
## 0.009977 seconds (Sampling)
## 0.015454 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.00495 seconds (Warm-up)
## 0.00945 seconds (Sampling)
## 0.0144 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.00485 seconds (Warm-up)
## 0.010348 seconds (Sampling)
## 0.015198 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.006443 seconds (Warm-up)
## 0.010323 seconds (Sampling)
## 0.016766 seconds (Total)
##
## [1] 31
##
## 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.006026 seconds (Warm-up)
## 0.010007 seconds (Sampling)
## 0.016033 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.005262 seconds (Warm-up)
## 0.010432 seconds (Sampling)
## 0.015694 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.004552 seconds (Warm-up)
## 0.00981 seconds (Sampling)
## 0.014362 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.005469 seconds (Warm-up)
## 0.009645 seconds (Sampling)
## 0.015114 seconds (Total)
##
## [1] 32
##
## 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.005818 seconds (Warm-up)
## 0.009836 seconds (Sampling)
## 0.015654 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.004811 seconds (Warm-up)
## 0.012907 seconds (Sampling)
## 0.017718 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.004738 seconds (Warm-up)
## 0.009909 seconds (Sampling)
## 0.014647 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.00489 seconds (Warm-up)
## 0.010052 seconds (Sampling)
## 0.014942 seconds (Total)
##
## [1] 33
##
## 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.003786 seconds (Warm-up)
## 0.007875 seconds (Sampling)
## 0.011661 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.0038 seconds (Warm-up)
## 0.00798 seconds (Sampling)
## 0.01178 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.00447 seconds (Warm-up)
## 0.007878 seconds (Sampling)
## 0.012348 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.004172 seconds (Warm-up)
## 0.008141 seconds (Sampling)
## 0.012313 seconds (Total)
##
## [1] 34
##
## 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.005845 seconds (Warm-up)
## 0.009992 seconds (Sampling)
## 0.015837 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.006596 seconds (Warm-up)
## 0.011211 seconds (Sampling)
## 0.017807 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.005569 seconds (Warm-up)
## 0.010942 seconds (Sampling)
## 0.016511 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.005475 seconds (Warm-up)
## 0.010003 seconds (Sampling)
## 0.015478 seconds (Total)
##
## [1] 35
##
## 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.005268 seconds (Warm-up)
## 0.009939 seconds (Sampling)
## 0.015207 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.005144 seconds (Warm-up)
## 0.010466 seconds (Sampling)
## 0.01561 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.005749 seconds (Warm-up)
## 0.010278 seconds (Sampling)
## 0.016027 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.005467 seconds (Warm-up)
## 0.01137 seconds (Sampling)
## 0.016837 seconds (Total)
##
## [1] 36
##
## 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.003965 seconds (Warm-up)
## 0.007006 seconds (Sampling)
## 0.010971 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.00373 seconds (Warm-up)
## 0.007582 seconds (Sampling)
## 0.011312 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.003724 seconds (Warm-up)
## 0.007938 seconds (Sampling)
## 0.011662 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.004091 seconds (Warm-up)
## 0.007661 seconds (Sampling)
## 0.011752 seconds (Total)
##
## [1] 37
##
## 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.006143 seconds (Warm-up)
## 0.010068 seconds (Sampling)
## 0.016211 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.005778 seconds (Warm-up)
## 0.010192 seconds (Sampling)
## 0.01597 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.005807 seconds (Warm-up)
## 0.010743 seconds (Sampling)
## 0.01655 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.006003 seconds (Warm-up)
## 0.014926 seconds (Sampling)
## 0.020929 seconds (Total)
##
## [1] 38
##
## 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.00546 seconds (Warm-up)
## 0.010457 seconds (Sampling)
## 0.015917 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.005105 seconds (Warm-up)
## 0.010245 seconds (Sampling)
## 0.01535 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.0048 seconds (Warm-up)
## 0.009814 seconds (Sampling)
## 0.014614 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.00485 seconds (Warm-up)
## 0.010092 seconds (Sampling)
## 0.014942 seconds (Total)
##
## [1] 39
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## Gradient evaluation took 1.8e-05 seconds
## 1000 transitions using 10 leapfrog steps per transition would take 0.18 seconds.
## Adjust your expectations accordingly!
##
##
## WARNING: There aren't enough warmup iterations to fit the
## three stages of adaptation as currently configured.
## Reducing each adaptation stage to 15%/75%/10% of
## the given number of warmup iterations:
## init_buffer = 15
## adapt_window = 75
## term_buffer = 10
##
## Iteration: 1 / 300 [ 0%] (Warmup)
## Iteration: 30 / 300 [ 10%] (Warmup)
## Iteration: 60 / 300 [ 20%] (Warmup)
## Iteration: 90 / 300 [ 30%] (Warmup)
## Iteration: 101 / 300 [ 33%] (Sampling)
## Iteration: 130 / 300 [ 43%] (Sampling)
## Iteration: 160 / 300 [ 53%] (Sampling)
## Iteration: 190 / 300 [ 63%] (Sampling)
## Iteration: 220 / 300 [ 73%] (Sampling)
## Iteration: 250 / 300 [ 83%] (Sampling)
## Iteration: 280 / 300 [ 93%] (Sampling)
## Iteration: 300 / 300 [100%] (Sampling)
##
## Elapsed Time: 0.006865 seconds (Warm-up)
## 0.010513 seconds (Sampling)
## 0.017378 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.004804 seconds (Warm-up)
## 0.009452 seconds (Sampling)
## 0.014256 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.006201 seconds (Warm-up)
## 0.010004 seconds (Sampling)
## 0.016205 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## 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.004951 seconds (Warm-up)
## 0.010882 seconds (Sampling)
## 0.015833 seconds (Total)
##
## [1] 40
##
## 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.005979 seconds (Warm-up)
## 0.010956 seconds (Sampling)
## 0.016935 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.005164 seconds (Warm-up)
## 0.009673 seconds (Sampling)
## 0.014837 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.005291 seconds (Warm-up)
## 0.010471 seconds (Sampling)
## 0.015762 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.005664 seconds (Warm-up)
## 0.009388 seconds (Sampling)
## 0.015052 seconds (Total)
##
## [1] 41
##
## 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.006707 seconds (Warm-up)
## 0.010281 seconds (Sampling)
## 0.016988 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.004877 seconds (Warm-up)
## 0.009778 seconds (Sampling)
## 0.014655 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.005178 seconds (Warm-up)
## 0.010135 seconds (Sampling)
## 0.015313 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.005338 seconds (Warm-up)
## 0.009557 seconds (Sampling)
## 0.014895 seconds (Total)
##
## [1] 42
##
## 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.006277 seconds (Warm-up)
## 0.010197 seconds (Sampling)
## 0.016474 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.005398 seconds (Warm-up)
## 0.010016 seconds (Sampling)
## 0.015414 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## 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.005786 seconds (Warm-up)
## 0.009303 seconds (Sampling)
## 0.015089 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.005712 seconds (Warm-up)
## 0.010755 seconds (Sampling)
## 0.016467 seconds (Total)
##
## [1] 43
##
## 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.005851 seconds (Warm-up)
## 0.010854 seconds (Sampling)
## 0.016705 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.005627 seconds (Warm-up)
## 0.010598 seconds (Sampling)
## 0.016225 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.005659 seconds (Warm-up)
## 0.01033 seconds (Sampling)
## 0.015989 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.006159 seconds (Warm-up)
## 0.010635 seconds (Sampling)
## 0.016794 seconds (Total)
##
## [1] 44
## ---- Bootstrap 2
##
## 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.005624 seconds (Warm-up)
## 0.010248 seconds (Sampling)
## 0.015872 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.010889 seconds (Warm-up)
## 0.010966 seconds (Sampling)
## 0.021855 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.005145 seconds (Warm-up)
## 0.01036 seconds (Sampling)
## 0.015505 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.005911 seconds (Warm-up)
## 0.011109 seconds (Sampling)
## 0.01702 seconds (Total)
##
## [1] 1
##
## 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.005475 seconds (Warm-up)
## 0.010009 seconds (Sampling)
## 0.015484 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.008997 seconds (Warm-up)
## 0.010154 seconds (Sampling)
## 0.019151 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.005734 seconds (Warm-up)
## 0.012364 seconds (Sampling)
## 0.018098 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.005804 seconds (Warm-up)
## 0.010442 seconds (Sampling)
## 0.016246 seconds (Total)
##
## [1] 2
##
## 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.004745 seconds (Warm-up)
## 0.007461 seconds (Sampling)
## 0.012206 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.004508 seconds (Warm-up)
## 0.007859 seconds (Sampling)
## 0.012367 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.004088 seconds (Warm-up)
## 0.007446 seconds (Sampling)
## 0.011534 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.003586 seconds (Warm-up)
## 0.007305 seconds (Sampling)
## 0.010891 seconds (Total)
##
## [1] 3
##
## 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.005162 seconds (Warm-up)
## 0.012006 seconds (Sampling)
## 0.017168 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.005591 seconds (Warm-up)
## 0.010587 seconds (Sampling)
## 0.016178 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.005433 seconds (Warm-up)
## 0.010954 seconds (Sampling)
## 0.016387 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.005347 seconds (Warm-up)
## 0.010399 seconds (Sampling)
## 0.015746 seconds (Total)
##
## [1] 4
##
## 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.005601 seconds (Warm-up)
## 0.010853 seconds (Sampling)
## 0.016454 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.005915 seconds (Warm-up)
## 0.011273 seconds (Sampling)
## 0.017188 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.005476 seconds (Warm-up)
## 0.010311 seconds (Sampling)
## 0.015787 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.005227 seconds (Warm-up)
## 0.010595 seconds (Sampling)
## 0.015822 seconds (Total)
##
## [1] 5
##
## 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.006195 seconds (Warm-up)
## 0.011185 seconds (Sampling)
## 0.01738 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.005651 seconds (Warm-up)
## 0.010706 seconds (Sampling)
## 0.016357 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.005666 seconds (Warm-up)
## 0.011816 seconds (Sampling)
## 0.017482 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.005498 seconds (Warm-up)
## 0.010639 seconds (Sampling)
## 0.016137 seconds (Total)
##
## [1] 6
##
## 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.004116 seconds (Warm-up)
## 0.007096 seconds (Sampling)
## 0.011212 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.006666 seconds (Warm-up)
## 0.007552 seconds (Sampling)
## 0.014218 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.004162 seconds (Warm-up)
## 0.00724 seconds (Sampling)
## 0.011402 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## 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.004106 seconds (Warm-up)
## 0.008066 seconds (Sampling)
## 0.012172 seconds (Total)
##
## [1] 7
##
## 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.003864 seconds (Warm-up)
## 0.007134 seconds (Sampling)
## 0.010998 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.003849 seconds (Warm-up)
## 0.006967 seconds (Sampling)
## 0.010816 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.003886 seconds (Warm-up)
## 0.007992 seconds (Sampling)
## 0.011878 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.00367 seconds (Warm-up)
## 0.007271 seconds (Sampling)
## 0.010941 seconds (Total)
##
## [1] 8
##
## 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.00389 seconds (Warm-up)
## 0.007097 seconds (Sampling)
## 0.010987 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.003538 seconds (Warm-up)
## 0.007524 seconds (Sampling)
## 0.011062 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.00372 seconds (Warm-up)
## 0.007592 seconds (Sampling)
## 0.011312 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.003625 seconds (Warm-up)
## 0.006992 seconds (Sampling)
## 0.010617 seconds (Total)
##
## [1] 9
##
## 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.004115 seconds (Warm-up)
## 0.008042 seconds (Sampling)
## 0.012157 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.003804 seconds (Warm-up)
## 0.007916 seconds (Sampling)
## 0.01172 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## 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.003625 seconds (Warm-up)
## 0.007428 seconds (Sampling)
## 0.011053 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.003705 seconds (Warm-up)
## 0.007266 seconds (Sampling)
## 0.010971 seconds (Total)
##
## [1] 10
##
## 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.004095 seconds (Warm-up)
## 0.007324 seconds (Sampling)
## 0.011419 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.003671 seconds (Warm-up)
## 0.010294 seconds (Sampling)
## 0.013965 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.003707 seconds (Warm-up)
## 0.007507 seconds (Sampling)
## 0.011214 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.00355 seconds (Warm-up)
## 0.007449 seconds (Sampling)
## 0.010999 seconds (Total)
##
## [1] 11
##
## 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.00447 seconds (Warm-up)
## 0.007534 seconds (Sampling)
## 0.012004 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.0037 seconds (Warm-up)
## 0.007949 seconds (Sampling)
## 0.011649 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.003696 seconds (Warm-up)
## 0.007466 seconds (Sampling)
## 0.011162 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.004072 seconds (Warm-up)
## 0.007598 seconds (Sampling)
## 0.01167 seconds (Total)
##
## [1] 12
##
## 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.007509 seconds (Warm-up)
## 0.010219 seconds (Sampling)
## 0.017728 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.00525 seconds (Warm-up)
## 0.011204 seconds (Sampling)
## 0.016454 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.005321 seconds (Warm-up)
## 0.009733 seconds (Sampling)
## 0.015054 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.005239 seconds (Warm-up)
## 0.010518 seconds (Sampling)
## 0.015757 seconds (Total)
##
## [1] 13
##
## 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.00389 seconds (Warm-up)
## 0.006903 seconds (Sampling)
## 0.010793 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.003791 seconds (Warm-up)
## 0.007785 seconds (Sampling)
## 0.011576 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.003508 seconds (Warm-up)
## 0.006954 seconds (Sampling)
## 0.010462 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.003672 seconds (Warm-up)
## 0.007452 seconds (Sampling)
## 0.011124 seconds (Total)
##
## [1] 14
##
## 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.006175 seconds (Warm-up)
## 0.010138 seconds (Sampling)
## 0.016313 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.005437 seconds (Warm-up)
## 0.010425 seconds (Sampling)
## 0.015862 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.005241 seconds (Warm-up)
## 0.011105 seconds (Sampling)
## 0.016346 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.005792 seconds (Warm-up)
## 0.01158 seconds (Sampling)
## 0.017372 seconds (Total)
##
## [1] 15
##
## 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.003941 seconds (Warm-up)
## 0.007417 seconds (Sampling)
## 0.011358 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.003925 seconds (Warm-up)
## 0.007608 seconds (Sampling)
## 0.011533 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.003581 seconds (Warm-up)
## 0.007335 seconds (Sampling)
## 0.010916 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.003873 seconds (Warm-up)
## 0.00733 seconds (Sampling)
## 0.011203 seconds (Total)
##
## [1] 16
##
## 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.006224 seconds (Warm-up)
## 0.011095 seconds (Sampling)
## 0.017319 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.007665 seconds (Warm-up)
## 0.011265 seconds (Sampling)
## 0.01893 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.005812 seconds (Warm-up)
## 0.011616 seconds (Sampling)
## 0.017428 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.005449 seconds (Warm-up)
## 0.011423 seconds (Sampling)
## 0.016872 seconds (Total)
##
## [1] 17
##
## 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.004146 seconds (Warm-up)
## 0.007331 seconds (Sampling)
## 0.011477 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.003927 seconds (Warm-up)
## 0.007772 seconds (Sampling)
## 0.011699 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.004108 seconds (Warm-up)
## 0.007741 seconds (Sampling)
## 0.011849 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.003854 seconds (Warm-up)
## 0.007251 seconds (Sampling)
## 0.011105 seconds (Total)
##
## [1] 18
##
## 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.004026 seconds (Warm-up)
## 0.00793 seconds (Sampling)
## 0.011956 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.003614 seconds (Warm-up)
## 0.009843 seconds (Sampling)
## 0.013457 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.003904 seconds (Warm-up)
## 0.007617 seconds (Sampling)
## 0.011521 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## 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.0038 seconds (Warm-up)
## 0.007414 seconds (Sampling)
## 0.011214 seconds (Total)
##
## [1] 19
##
## 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.003728 seconds (Warm-up)
## 0.007535 seconds (Sampling)
## 0.011263 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.003668 seconds (Warm-up)
## 0.009636 seconds (Sampling)
## 0.013304 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.00379 seconds (Warm-up)
## 0.0079 seconds (Sampling)
## 0.01169 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.003767 seconds (Warm-up)
## 0.007437 seconds (Sampling)
## 0.011204 seconds (Total)
##
## [1] 20
##
## 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.005842 seconds (Warm-up)
## 0.01071 seconds (Sampling)
## 0.016552 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.008279 seconds (Warm-up)
## 0.011796 seconds (Sampling)
## 0.020075 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.005417 seconds (Warm-up)
## 0.011175 seconds (Sampling)
## 0.016592 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.00573 seconds (Warm-up)
## 0.011662 seconds (Sampling)
## 0.017392 seconds (Total)
##
## [1] 21
##
## 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.00598 seconds (Warm-up)
## 0.010746 seconds (Sampling)
## 0.016726 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.005223 seconds (Warm-up)
## 0.01198 seconds (Sampling)
## 0.017203 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## 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.005229 seconds (Warm-up)
## 0.012037 seconds (Sampling)
## 0.017266 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.005248 seconds (Warm-up)
## 0.010974 seconds (Sampling)
## 0.016222 seconds (Total)
##
## [1] 22
##
## 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.003889 seconds (Warm-up)
## 0.007251 seconds (Sampling)
## 0.01114 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.00396 seconds (Warm-up)
## 0.007776 seconds (Sampling)
## 0.011736 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.003772 seconds (Warm-up)
## 0.007302 seconds (Sampling)
## 0.011074 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.003649 seconds (Warm-up)
## 0.007619 seconds (Sampling)
## 0.011268 seconds (Total)
##
## [1] 23
##
## 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.004318 seconds (Warm-up)
## 0.009437 seconds (Sampling)
## 0.013755 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.003828 seconds (Warm-up)
## 0.007496 seconds (Sampling)
## 0.011324 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.003621 seconds (Warm-up)
## 0.00816 seconds (Sampling)
## 0.011781 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.003769 seconds (Warm-up)
## 0.008029 seconds (Sampling)
## 0.011798 seconds (Total)
##
## [1] 24
##
## 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.006466 seconds (Warm-up)
## 0.012537 seconds (Sampling)
## 0.019003 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.003661 seconds (Warm-up)
## 0.008091 seconds (Sampling)
## 0.011752 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.004023 seconds (Warm-up)
## 0.0079 seconds (Sampling)
## 0.011923 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.004374 seconds (Warm-up)
## 0.008564 seconds (Sampling)
## 0.012938 seconds (Total)
##
## [1] 25
##
## 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.005977 seconds (Warm-up)
## 0.011601 seconds (Sampling)
## 0.017578 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.005178 seconds (Warm-up)
## 0.011588 seconds (Sampling)
## 0.016766 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.00579 seconds (Warm-up)
## 0.011679 seconds (Sampling)
## 0.017469 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.005546 seconds (Warm-up)
## 0.011336 seconds (Sampling)
## 0.016882 seconds (Total)
##
## [1] 26
##
## 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.00668 seconds (Warm-up)
## 0.010663 seconds (Sampling)
## 0.017343 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.005322 seconds (Warm-up)
## 0.011591 seconds (Sampling)
## 0.016913 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.006017 seconds (Warm-up)
## 0.011322 seconds (Sampling)
## 0.017339 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.005372 seconds (Warm-up)
## 0.010645 seconds (Sampling)
## 0.016017 seconds (Total)
##
## [1] 27
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 1).
##
## 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.003797 seconds (Warm-up)
## 0.007883 seconds (Sampling)
## 0.01168 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.003876 seconds (Warm-up)
## 0.007343 seconds (Sampling)
## 0.011219 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.0038 seconds (Warm-up)
## 0.007202 seconds (Sampling)
## 0.011002 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.003827 seconds (Warm-up)
## 0.007971 seconds (Sampling)
## 0.011798 seconds (Total)
##
## [1] 28
##
## 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.004054 seconds (Warm-up)
## 0.00757 seconds (Sampling)
## 0.011624 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.004266 seconds (Warm-up)
## 0.008176 seconds (Sampling)
## 0.012442 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.003798 seconds (Warm-up)
## 0.007497 seconds (Sampling)
## 0.011295 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.003748 seconds (Warm-up)
## 0.007454 seconds (Sampling)
## 0.011202 seconds (Total)
##
## [1] 29
##
## 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.007904 seconds (Warm-up)
## 0.011143 seconds (Sampling)
## 0.019047 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.0061 seconds (Warm-up)
## 0.01106 seconds (Sampling)
## 0.01716 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.005768 seconds (Warm-up)
## 0.010626 seconds (Sampling)
## 0.016394 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.005908 seconds (Warm-up)
## 0.011261 seconds (Sampling)
## 0.017169 seconds (Total)
##
## [1] 30
##
## 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.006198 seconds (Warm-up)
## 0.010853 seconds (Sampling)
## 0.017051 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.005747 seconds (Warm-up)
## 0.011262 seconds (Sampling)
## 0.017009 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.005459 seconds (Warm-up)
## 0.010264 seconds (Sampling)
## 0.015723 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.005425 seconds (Warm-up)
## 0.01078 seconds (Sampling)
## 0.016205 seconds (Total)
##
## [1] 31
##
## 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.006751 seconds (Warm-up)
## 0.010522 seconds (Sampling)
## 0.017273 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.005963 seconds (Warm-up)
## 0.010197 seconds (Sampling)
## 0.01616 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.00541 seconds (Warm-up)
## 0.012771 seconds (Sampling)
## 0.018181 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.007186 seconds (Warm-up)
## 0.011554 seconds (Sampling)
## 0.01874 seconds (Total)
##
## [1] 32
##
## 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.00617 seconds (Warm-up)
## 0.010851 seconds (Sampling)
## 0.017021 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.008746 seconds (Warm-up)
## 0.012594 seconds (Sampling)
## 0.02134 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.005523 seconds (Warm-up)
## 0.010714 seconds (Sampling)
## 0.016237 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.005626 seconds (Warm-up)
## 0.012985 seconds (Sampling)
## 0.018611 seconds (Total)
##
## [1] 33
##
## 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.0057 seconds (Warm-up)
## 0.010712 seconds (Sampling)
## 0.016412 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.005218 seconds (Warm-up)
## 0.010344 seconds (Sampling)
## 0.015562 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.00508 seconds (Warm-up)
## 0.011516 seconds (Sampling)
## 0.016596 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.005759 seconds (Warm-up)
## 0.014271 seconds (Sampling)
## 0.02003 seconds (Total)
##
## [1] 34
##
## 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.004442 seconds (Warm-up)
## 0.008035 seconds (Sampling)
## 0.012477 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.003838 seconds (Warm-up)
## 0.008252 seconds (Sampling)
## 0.01209 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.004059 seconds (Warm-up)
## 0.008055 seconds (Sampling)
## 0.012114 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.004148 seconds (Warm-up)
## 0.008882 seconds (Sampling)
## 0.01303 seconds (Total)
##
## [1] 35
##
## 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.004853 seconds (Warm-up)
## 0.007372 seconds (Sampling)
## 0.012225 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.003593 seconds (Warm-up)
## 0.007975 seconds (Sampling)
## 0.011568 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.00387 seconds (Warm-up)
## 0.007662 seconds (Sampling)
## 0.011532 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.003861 seconds (Warm-up)
## 0.007606 seconds (Sampling)
## 0.011467 seconds (Total)
##
## [1] 36
##
## 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.004093 seconds (Warm-up)
## 0.007539 seconds (Sampling)
## 0.011632 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.003846 seconds (Warm-up)
## 0.010802 seconds (Sampling)
## 0.014648 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.003843 seconds (Warm-up)
## 0.007511 seconds (Sampling)
## 0.011354 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.003746 seconds (Warm-up)
## 0.00745 seconds (Sampling)
## 0.011196 seconds (Total)
##
## [1] 37
##
## 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.005514 seconds (Warm-up)
## 0.010424 seconds (Sampling)
## 0.015938 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.005972 seconds (Warm-up)
## 0.01102 seconds (Sampling)
## 0.016992 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.005356 seconds (Warm-up)
## 0.01078 seconds (Sampling)
## 0.016136 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 4).
##
## 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.006055 seconds (Warm-up)
## 0.011843 seconds (Sampling)
## 0.017898 seconds (Total)
##
## [1] 38
##
## 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.00418 seconds (Warm-up)
## 0.00748 seconds (Sampling)
## 0.01166 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.00377 seconds (Warm-up)
## 0.007384 seconds (Sampling)
## 0.011154 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.003809 seconds (Warm-up)
## 0.007867 seconds (Sampling)
## 0.011676 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.004354 seconds (Warm-up)
## 0.007795 seconds (Sampling)
## 0.012149 seconds (Total)
##
## [1] 39
##
## 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.004045 seconds (Warm-up)
## 0.00741 seconds (Sampling)
## 0.011455 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.003863 seconds (Warm-up)
## 0.007914 seconds (Sampling)
## 0.011777 seconds (Total)
##
##
## SAMPLING FOR MODEL 'idem' NOW (CHAIN 3).
##
## 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.004057 seconds (Warm-up)
## 0.007699 seconds (Sampling)
## 0.011756 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.004482 seconds (Warm-up)
## 0.007652 seconds (Sampling)
## 0.012134 seconds (Total)
##
## [1] 40
##
## 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.007028 seconds (Warm-up)
## 0.011003 seconds (Sampling)
## 0.018031 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.006122 seconds (Warm-up)
## 0.0134 seconds (Sampling)
## 0.019522 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.005766 seconds (Warm-up)
## 0.011482 seconds (Sampling)
## 0.017248 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.006424 seconds (Warm-up)
## 0.010793 seconds (Sampling)
## 0.017217 seconds (Total)
##
## [1] 41
##
## 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.004529 seconds (Warm-up)
## 0.007828 seconds (Sampling)
## 0.012357 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.00369 seconds (Warm-up)
## 0.00793 seconds (Sampling)
## 0.01162 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.00474 seconds (Warm-up)
## 0.007953 seconds (Sampling)
## 0.012693 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.00392 seconds (Warm-up)
## 0.007631 seconds (Sampling)
## 0.011551 seconds (Total)
##
## [1] 42
##
## 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.006184 seconds (Warm-up)
## 0.012323 seconds (Sampling)
## 0.018507 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.00631 seconds (Warm-up)
## 0.010883 seconds (Sampling)
## 0.017193 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.005868 seconds (Warm-up)
## 0.011485 seconds (Sampling)
## 0.017353 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.005471 seconds (Warm-up)
## 0.011901 seconds (Sampling)
## 0.017372 seconds (Total)
##
## [1] 43
##
## 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.003944 seconds (Warm-up)
## 0.007399 seconds (Sampling)
## 0.011343 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.003829 seconds (Warm-up)
## 0.010742 seconds (Sampling)
## 0.014571 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.003754 seconds (Warm-up)
## 0.007593 seconds (Sampling)
## 0.011347 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.00384 seconds (Warm-up)
## 0.00805 seconds (Sampling)
## 0.01189 seconds (Total)
##
## [1] 44
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 PValue
## [1,] -0.25 -0.25 -0.17359872 0.014608040 1.437197e-32
## [2,] 0.00 -0.25 -0.12656143 0.002410407 0.000000e+00
## [3,] 0.25 -0.25 -0.09055136 0.009140136 3.881098e-23
## [4,] -0.25 0.00 -0.23816060 0.024767341 6.849876e-22
## [5,] 0.00 0.00 -0.18371082 0.006745905 2.646842e-163
## [6,] 0.25 0.00 -0.13676504 0.009722516 6.072579e-45
## [7,] -0.25 0.25 -0.29874171 0.024282024 8.727312e-35
## [8,] 0.00 0.25 -0.25989476 0.009431326 3.694202e-167
## [9,] 0.25 0.25 -0.21496225 0.004804638 0.000000e+00
##
## Treatment effect (quantiles) under different
## sensitivity parameters are:
##
## Delta TRT Q QuantY QuantSurv Q2.5 Q97.5 Q2.5_Surv Q97.5_Surv
## 3 -0.25 0 0.5 NA 72 91.00000 91.00000 1 1
## 8 -0.25 1 0.5 20.88373 NA 25.75686 25.75686 0 0
## 13 0.00 0 0.5 NA 72 91.00000 91.00000 1 1
## 18 0.00 1 0.5 30.00000 NA 36.00000 36.00000 0 0
## 23 0.25 0 0.5 NA 72 91.00000 91.00000 1 1
## 28 0.25 1 0.5 34.00000 NA 40.00000 40.00000 0 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();