What is the meaning of embedding_dim in tf.keras.layers.Embedding layer?
Could someone please explain with an example?
What is the meaning of embedding_dim in tf.keras.layers.Embedding layer?
Could someone please explain with an example?
There’s no embedding_dim
parameter in Embedding layer. Seems like you’re referring to output_dim
which refers to the embedding dimension. Please read the page on word embeddings for better context.