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
Currently, the random number seed is set via a Python function def seed(value: int) -> None. Changing this to a parameter random_state will allow it to be set through JSON and therefore the stand-alone executable; it will also enable being set via a future set_params() and constructor args, making it more similar to sklearn.
The text was updated successfully, but these errors were encountered:
Currently, the random number seed is set via a Python function
def seed(value: int) -> None
. Changing this to a parameterrandom_state
will allow it to be set through JSON and therefore the stand-alone executable; it will also enable being set via a futureset_params()
and constructor args, making it more similar to sklearn.The text was updated successfully, but these errors were encountered: