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
In resampling strategies and in partition and perhaps elsewhere there is option to set shuffle=true, and also an option to set rng to integer or specific RNG object. If the latter is set, then shuffle=true ought to be forced. Currently shuffle has default false and if rng only is set then rng is ignored and no shuffling happens.
The text was updated successfully, but these errors were encountered:
Splits the vector rows into a tuple of vectors whose lengths are
given by the corresponding fractions of length(rows). The last
fraction is not provided, as it is inferred from the preceding
ones. So, for example,
Pre-shuffling of rows always occurs if rng is specified, unless shuffle=false is also specified. Ifrng an integer, then MersenneTwister(rng) is used as a random number generator; otherwise
some AbstractRNG object is expected.
To use the global random generator it suffices to specify shuffle=true.
In resampling strategies and in partition and perhaps elsewhere there is option to set shuffle=true, and also an option to set rng to integer or specific RNG object. If the latter is set, then shuffle=true ought to be forced. Currently shuffle has default false and if rng only is set then rng is ignored and no shuffling happens.
The text was updated successfully, but these errors were encountered: