We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow updates to a user-specified subset of trees at any given iteration of the low-level / prototype interface (as documented here)
Adding a trees_to_update (or similarly named) parameter to the sample_one_iteration() method of the ForestModel class in R, so that
trees_to_update
sample_one_iteration()
ForestModel
forest_model$sample_one_iteration( forest_dataset, outcome, forest_samples, rng, feature_types, outcome_model_type, leaf_prior_scale, var_weights, global_var_samples[i], cutpoint_grid_size, gfr = T, trees_to_update = c(1,3,10) )
updates only the first, third, and 10th trees in the forest during the i-th iteration of a custom sampler.
i
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Allow updates to a user-specified subset of trees at any given iteration of the low-level / prototype interface (as documented here)
Ideas for Implementation / Expected Behavior
Adding a
trees_to_update
(or similarly named) parameter to thesample_one_iteration()
method of theForestModel
class in R, so thatupdates only the first, third, and 10th trees in the forest during the
i
-th iteration of a custom sampler.The text was updated successfully, but these errors were encountered: