From 7cb1f7cee01c7de6fcc65e75e413406499b0604d Mon Sep 17 00:00:00 2001 From: upgradvisor-bot <92053865+upgradvisor-bot@users.noreply.github.com> Date: Fri, 10 Dec 2021 23:37:08 -0500 Subject: [PATCH] Hyperopt upgrade (#741) * Upgrade hyperopt * Do not use newly added progress bar Co-authored-by: Raphael Sofaer --- qlib/contrib/tuner/tuner.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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",