I’ve been following ray train tf. Under Distributed Model Training one can choose TensorFlow or PyTorch.
For TensorFlow there is this function:
# For GPU Training, set `use_gpu` to True.
use_gpu = False
trainer = TensorflowTrainer(
train_loop_per_worker=train_func_distributed,
scaling_config=ScalingConfig(num_workers=4, use_gpu=use_gpu),
)
It does not run with tf 2.18, and ray 2.39.0 and ran on Ubuntu 24.04.
Have others ran this example successfully?
Others seem to report the same issue here.