From 2.15 to 2.16, why did tf.keras.Model.fit remove "workers" and "use_multiprocessing"?

Also cite an official source, if you can.

@Yuval_Levental , Starting from TensorFlow 2.16 it defaults to keras3. For multiprocessing & data-loading parameters are not part of the keras 3 API. So, we can use tf.distribute.MultiWorkerMirroredStrategy directly. For more details check this document. Thanks!