diff --git a/qlib/contrib/tuner/tuner.py b/qlib/contrib/tuner/tuner.py index 2ce957859..7fe1cec07 100644 --- a/qlib/contrib/tuner/tuner.py +++ b/qlib/contrib/tuner/tuner.py @@ -46,6 +46,7 @@ class Tuner: space=self.space, algo=tpe.suggest, max_evals=self.max_evals, + show_progressbar=False, ) self.logger.info("Local best params: {} ".format(self.best_params)) TimeInspector.log_cost_time( diff --git a/setup.py b/setup.py index 3aa77a909..870dca698 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ REQUIRED = [ "python-redis-lock>=3.3.1", "schedule>=0.6.0", "cvxpy>=1.0.21", - "hyperopt==0.1.1", + "hyperopt==0.1.2", "fire>=0.3.1", "statsmodels", "xlrd>=1.0.0",