Slackbot
11/03/2023, 11:12 AMJosé Morales
11/03/2023, 4:25 PMlobbie lobbie
11/04/2023, 11:37 AMfrom ray import tune
from ray.tune.search.hyperopt import HyperOptSearch
Thanks.A
11/04/2023, 3:45 PMJosé Morales
11/06/2023, 3:38 PMcpus=1
? Seems like that option controls the resources of each trial, so if you set it to all your cpus (the default) it can just run one trial concurrentlyA
11/07/2023, 11:25 PMJosé Morales
11/07/2023, 11:40 PMModelX(cpus=cpu_count())
) then it can only run one trial at a time, whereas if you set cpus=1
then it can parallelize the trials