Error unexpected keyword argument 'workers'
model.fit( train_data_provider, validation_data=val_data_provider, epochs=configs.train_epochs, callbacks=[earlystopper, checkpoint, trainLogger, reduceLROnPlat, tb_callback, model2onnx], workers=configs.train_workers )
as soon as i try to fit the model i got the following Error:
File "/Users/abc/Python/mltu/Tutorials/02_captcha_to_text/train_model_with_new_data.py", line 121, in
Removing workers=configs.train_workers worked for me since tf (2.18) model.fit() does not support worker param.
Ref: https://www.tensorflow.org/api_docs/python/tf/keras/Model#fit