Fix wordings in comment
This commit is contained in:
parent
0c6164df7e
commit
6ffb8b7a70
@ -358,8 +358,9 @@ class Hyperopt:
|
|||||||
"""
|
"""
|
||||||
n = len(self.opt.models) - SKOPT_MODELS_MAX_NUM
|
n = len(self.opt.models) - SKOPT_MODELS_MAX_NUM
|
||||||
# Keep no more than 2*SKOPT_MODELS_MAX_NUM models in the skopt models list,
|
# Keep no more than 2*SKOPT_MODELS_MAX_NUM models in the skopt models list,
|
||||||
# remove the old ones. These are no really needed, the current model
|
# remove the old ones. These are actually of no use, the current model
|
||||||
# from the estimator is only used.
|
# from the estimator is the only one used in the skopt optimizer.
|
||||||
|
# Freqtrade code also does not inspect details of the models.
|
||||||
if n >= SKOPT_MODELS_MAX_NUM:
|
if n >= SKOPT_MODELS_MAX_NUM:
|
||||||
logger.debug(f"Fixing skopt models list, removing {n} old items...")
|
logger.debug(f"Fixing skopt models list, removing {n} old items...")
|
||||||
del self.opt.models[0:n]
|
del self.opt.models[0:n]
|
||||||
|
Loading…
Reference in New Issue
Block a user