hi all
tensor ver 2.16.0rc0, now error when loadmodel(). so tensor 2.11 not error.
why error at TypeError: load_model() got an unexpected keyword argument ‘options’ ?
help me, thanks all
Tf.keras.models.load_model() -> TypeError: load_model() got an unexpected keyword argument 'options'
The options
keyword argument error you’re seeing in TensorFlow 2.16.0rc0, but not in 2.11, is likely due to changes in the TensorFlow API between versions. To fix it, check the TensorFlow documentation for version 2.16.0rc0 to see how options
should be used with load_model
, and update your code accordingly to match the new API requirements.