MLJModels.jl
MLJModels.jl copied to clipboard
Expose rng hyperparameter in DecsionTreeRegressor/Classifier
The DecisionTree.jl models now have rng as a hyperparameter, which MLJModels should expose.
default value: nothing (meaning use GLOBAL_RNG)
type: Union{Int,AbstractRNG}
If set to integer, then fit method should pass rng_internal = MersenneTwister(rng) to DecisionTree package.
Optionally combine with #177
This appears to have been sorted.