NLP - Sequence Models for NLP
Given this code snippet of a simple RNN processing a sentence:
What is the output?
sentence = ['I', 'love', 'AI']
hidden = 0
for word in sentence:
hidden = hidden + len(word)
print(hidden)What is the output?
