Hello. I’m wondering how to interpret comments in exercise UNQ_C5
/ Exercise 5 - Encoder
.
Ex. line of code, lines 48-49:
# Pass input through the Embedding layer
x = None # (batch_size, input_seq_len, fully_connected_dim)
Assuming I do understand it well and this describes expected shape after performing the operation - shouldn’t comment mention embedding_dim
instead fully_connected_dim
?