mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
Fix: When total epochs is less than cpu cores
This commit is contained in:
parent
ac7fa8252b
commit
7a4edb1cd8
|
@ -557,6 +557,8 @@ class Hyperopt:
|
|||
cpus = cpu_count()
|
||||
logger.info(f"Found {cpus} CPU cores. Let's make them scream!")
|
||||
config_jobs = self.config.get('hyperopt_jobs', -1)
|
||||
if self.total_epochs < cpus:
|
||||
config_jobs = self.total_epochs
|
||||
logger.info(f'Number of parallel jobs set as: {config_jobs}')
|
||||
|
||||
self.dimensions: List[Dimension] = self.hyperopt_space()
|
||||
|
|
Loading…
Reference in New Issue
Block a user