Hi,
is it possible to use fractional GPU with ray.tune.sklearn.TuneSearchCV
? If so, how?
Thanks in advance.
Hi,
is it possible to use fractional GPU with ray.tune.sklearn.TuneSearchCV
? If so, how?
Thanks in advance.
Hi @F_S,
if you specify e.g. n_jobs=4
on a machine with 1 GPU, it will parallelize the task with 4 workers, and each will use 0.25 GPU.
Does that help?