Differences between revisions 3 and 4
Revision 3 as of 2023-10-28 03:17:33
Size: 629
Comment: Renaming page
Revision 4 as of 2025-01-10 16:18:56
Size: 697
Comment: Killing NaturalLanguageProcessing page
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from NaturalLanguageProcessing/BagOfWordsModel

Bag of Words Model

A bag of words model is essentially counting words per document.


Data Structure

Rows are documents and columns are words or phrases. Inevitably this is a sparse matrix.


Implementation

First the words and phrases across all documents must be tokenized.

Next, the count of each key word/phase is extracted from each document.

Finally, the output matrix must be interpretted. Semantic meaning is lost so care must be taken to ensure that sourced documents have a common context.


CategoryRicottone

Statistics/BagOfWordsModel (last edited 2025-01-10 16:19:13 by DominicRicottone)