Posted by: Pdfprep
Post Date: July 6, 2021
Given the following sentence:
The dog jumps over a fence.
What would a vectorized version after common English stopword removal look like?
A . [‘dog’, ‘fence’, ‘run’]
B . [‘fence’, ‘jumps’]
C . [‘dog’, ‘fence’, ‘jumps’]
D . [‘a’, ‘dog’, ‘fence’, ‘jumps’, ‘over’, ‘the’]
Answer: C
Explanation:
Reference: https://towardsdatascience.com/text-pre-processing-stop-words-removal-using-different-libraries-f20bac19929a
Leave a Reply