通过seed得到相同结果

如果希望每次得到相同的结果,可以设置seed参数

# ensure that the result is the sameestim = HyperoptEstimator(classifier=any_classifier('clf'),algo=tpe.suggest, seed=0)estim.fit(X_train,y_train)print(estim.score(X_test,y_test))print(estim.best_model())

你可能感兴趣的:(通过seed得到相同结果)