I\'m trying to follow this tutrial https://colab.research.google.com/github/tensorflow/examples/blob/master/community/en/transformer_chatbot.ipynb, However, when I tried to save
If you get this error while calling transformer
then your problem is with creating the model, not saving it.
Other than that, I see several issues with your get_config
:
dropout
instead of rate
.self.d_model
etc.) are not defined or assigned at __init__
.Encoder
class.