For example, "yourself" is a stopword but "Yourself" is not being matched as a stopword. I think this is a little strange, because our StopwordCount primitive is case insensitive. One possible behavior we can investigate implementing is to call .lower() on the word before checking whether it is a stopword.
For example, "yourself" is a stopword but "Yourself" is not being matched as a stopword. I think this is a little strange, because our
StopwordCount
primitive is case insensitive. One possible behavior we can investigate implementing is to call.lower()
on the word before checking whether it is a stopword.