NLP - Sequence Models for NLP
Consider this simplified code snippet of a sequence model processing words:
What will be the output?
words = ['I', 'love', 'AI']
state = 0
for word in words:
state += len(word)
print(state)What will be the output?
