capability__random_state#
- capability__random_state()[source]#
Capability: the estimator can be derandomized using a random_state.
String name:
"capability:random_state"Public capability tag
Values: bool,
True/FalseExample:
TrueDefault:
False
If the tag is
True, the estimator can be derandomized using arandom_stateparameter. If therandom_stateparameter is set, then the estimator will produce the same results on every run, up to minimal numerical precision discrepancies (1e-5 relative error). If the tag isFalse, the estimator does not have arandom_stateparameter and cannot be derandomized.The tag may be inspected by the user to find estimators that can be derandomized.
The tag is also used internally in tests of
sktimeto verify the behaviour of estimators.