NLP - Text Similarity and Search
You have two documents represented as sets of words: Doc1 = {'apple', 'banana', 'cherry', 'date'} and Doc2 = {'banana', 'date', 'fig', 'grape'}. How would you use Jaccard similarity to find how similar these documents are?
