You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support for binary outcomes in BART and BCF with a probit link ([#164](https://github.com/StochasticTree/stochtree/pull/164))
8
+
9
+
## Bug Fixes
10
+
11
+
* Fixed indexing bug in cleanup of grow-from-root (GFR) samples in BART and BCF models
12
+
* Avoid using covariate preprocessor in `computeForestLeafIndices` R function when a `ForestSamples` object is provided (instead of a `bartmodel` or `bcfmodel` object)
13
+
14
+
# stochtree 0.1.1
15
+
16
+
## Bug Fixes
17
+
18
+
* Fixed initialization bug in several R package code examples for random effects models
19
+
20
+
# stochtree 0.1.0
21
+
22
+
Initial "alpha" release
23
+
24
+
## New Features
25
+
26
+
* Support for sampling stochastic tree ensembles using two algorithms: MCMC and Grow-From-Root (GFR)
27
+
* High-level model types supported:
28
+
* Supervised learning with constant leaves or user-specified leaf regression models
29
+
* Causal effect estimation with binary or continuous treatments
30
+
* Additional high-level modeling features:
31
+
* Forest-based variance function estimation (heteroskedasticity)
32
+
* Additive (univariate or multivariate) group random effects
33
+
* Multi-chain sampling and support for parallelism
34
+
* "Warm-start" initialization of MCMC forest samplers via the Grow-From-Root (GFR) algorithm
35
+
* Automated preprocessing / handling of categorical variables
36
+
* Low-level interface:
37
+
* Ability to combine a forest sampler with other (additive) model terms, without using C++
38
+
* Combine and sample an arbitrary number of forests or random effects terms
Copy file name to clipboardExpand all lines: NEWS.md
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,13 @@
1
1
# stochtree 0.1.2
2
2
3
+
## New Features
4
+
5
+
* Support for binary outcomes in BART and BCF with a probit link ([#164](https://github.com/StochasticTree/stochtree/pull/164))
6
+
7
+
## Bug Fixes
8
+
3
9
* Fixed indexing bug in cleanup of grow-from-root (GFR) samples in BART and BCF models
4
-
* Avoid using covariate preprocessor in `computeForestLeafIndices` function when a `ForestSamples` object is provided
10
+
* Avoid using covariate preprocessor in `computeForestLeafIndices` function when a `ForestSamples` object is provided (rather than a `bartmodel` or `bcfmodel` object)
#' - `sigma2_leaf_scale` Scale parameter in the `IG(sigma2_leaf_shape, sigma2_leaf_scale)` leaf node parameter variance model. Calibrated internally as `0.5/num_trees` if not set here.
59
59
#' - `keep_vars` Vector of variable names or column indices denoting variables that should be included in the forest. Default: `NULL`.
60
60
#' - `drop_vars` Vector of variable names or column indices denoting variables that should be excluded from the forest. Default: `NULL`. If both `drop_vars` and `keep_vars` are set, `drop_vars` will be ignored.
61
+
#' - `probit_outcome_model` Whether or not the outcome should be modeled as explicitly binary via a probit link. If `TRUE`, `y` must only contain the values `0` and `1`. Default: `FALSE`.
61
62
#'
62
63
#' @param variance_forest_params (Optional) A list of variance forest model parameters, each of which has a default value processed internally, so this argument list is optional.
0 commit comments