NLP - Sequence Models for NLP
Identify the error in the following embedding layer usage:
embedding = tf.keras.layers.Embedding(input_dim=1000, output_dim=64) input_seq = tf.constant([[0, 1, 2], [999, 1000, 500]]) output = embedding(input_seq)
