1
| models.model_from_json(json)
|
and getting this error
1
| ValueError: Unknown initializer: GlorotUniform
|
then, change
1
| models.model_from_json(json)
|
to
1
| tf.keras.models.model_from_json(json)
|
I hope this change have solved your problems.
Thanks for reading! Happy coding :)
Buy Me a Coffee - https://www.buymeacoffee.com/agautam
Comments
Post a Comment