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()
|
cpus = cpu_count()
|
||||||
logger.info(f"Found {cpus} CPU cores. Let's make them scream!")
|
logger.info(f"Found {cpus} CPU cores. Let's make them scream!")
|
||||||
config_jobs = self.config.get('hyperopt_jobs', -1)
|
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}')
|
logger.info(f'Number of parallel jobs set as: {config_jobs}')
|
||||||
|
|
||||||
self.dimensions: List[Dimension] = self.hyperopt_space()
|
self.dimensions: List[Dimension] = self.hyperopt_space()
|
||||||
|
Loading…
Reference in New Issue
Block a user