Hi guys,
In the call function of class EncoderLayer. the comments says the shape of x is (batch_size, input_seq_len, fully_connected_dim). I think this is not correct, it should be (batch_size, input_seq_len, embedding_dim). fully_connected_dim displays several times in coments, I think they are almost all wrong. Please correct me If I am wrong. Please correct the comments If I am right.
Thank you very much.
def call(self, x, training, mask):
"""
Forward pass for the Encoder Layer
Arguments:
x (tf.Tensor): Tensor of shape (batch_size, input_seq_len, fully_connected_dim)