I see the following:
using MLJ
Tree = @load DecisionTreeClassifier pkg=DecisionTree
julia> tree = Tree()
DecisionTreeClassifier(
max_depth = -1,
min_samples_leaf = 1,
min_samples_split = 2,
min_purity_increase = 0.0,
n_subfeatures = 0,
post_prune = false,
merge_purity_threshold = 1.0,
display_depth = 5,
feature_importance = :impurity,
rng = Random.TaskLocalRNG())
not much success after reading docs about Random.TaskLocalRNG. How could I set a fixed seed for it? Should I use
Random.seed!(123)
or
Random.seed!(Random.TaskLocalRNG(), 123)
?
thanks