1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-06-06 05:51:17 +08:00

Hyperopt upgrade (#741)

* Upgrade hyperopt

* Do not use newly added progress bar

Co-authored-by: Raphael Sofaer <rsofaer@gmail.com>
This commit is contained in:
upgradvisor-bot
2021-12-10 23:37:08 -05:00
committed by GitHub
parent d0ff5eea9d
commit 7cb1f7cee0
2 changed files with 2 additions and 1 deletions

View File

@@ -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(

View File

@@ -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",