@@ -493,7 +493,7 @@ def strategy(self, strategy):
493493 assert strategy in {"GRID" , "RANDOM" , "BAYESIAN" }
494494 self ._raw_settings ["strategy" ] = strategy
495495
496- def set_grid_search (self , shuffle = True , seed = 0 ):
496+ def set_grid_search (self , shuffle = True , seed = 1337 ):
497497 """
498498 Sets the search strategy to "GRID" to perform a grid-search on the hyperparameters.
499499
@@ -512,7 +512,7 @@ def set_grid_search(self, shuffle=True, seed=0):
512512 self ._raw_settings ["randomized" ] = shuffle
513513 self ._set_seed (seed )
514514
515- def set_random_search (self , seed = 0 ):
515+ def set_random_search (self , seed = 1337 ):
516516 """
517517 Sets the search strategy to "RANDOM" to perform a random search on the hyperparameters.
518518
@@ -522,7 +522,7 @@ def set_random_search(self, seed=0):
522522 self ._raw_settings ["strategy" ] = "RANDOM"
523523 self ._set_seed (seed )
524524
525- def set_bayesian_search (self , seed = 0 ):
525+ def set_bayesian_search (self , seed = 1337 ):
526526 """
527527 Sets the search strategy to "BAYESIAN" to perform a Bayesian search on the hyperparameters.
528528
@@ -565,7 +565,7 @@ def cv_seed(self, seed):
565565 """
566566 self ._set_cv_seed (seed )
567567
568- def set_kfold_validation (self , n_folds = 5 , stratified = True , cv_seed = 0 ):
568+ def set_kfold_validation (self , n_folds = 5 , stratified = True , cv_seed = 1337 ):
569569 """
570570 Sets the validation mode to k-fold cross-validation (either "KFOLD" or "TIME_SERIES_KFOLD" if time-based ordering
571571 is enabled).
@@ -593,7 +593,7 @@ def set_kfold_validation(self, n_folds=5, stratified=True, cv_seed=0):
593593 self ._raw_settings ["stratified" ] = stratified
594594 self ._set_cv_seed (cv_seed )
595595
596- def set_single_split_validation (self , split_ratio = 0.8 , stratified = True , cv_seed = 0 ):
596+ def set_single_split_validation (self , split_ratio = 0.8 , stratified = True , cv_seed = 1337 ):
597597 """
598598 Sets the validation mode to single split (either "SHUFFLE" or "TIME_SERIES_SINGLE_SPLIT" if time-based ordering
599599 is enabled).
0 commit comments