#concept

bag of words ? statistical model of text that is based on unordered collection (a โ€œbagโ€) of words. It is commonly used for text and document classification. Example:

BoW1 = {
	"John": 2,
	"loves": 1
	"Mary": 2,
	"hates": 1
}

References

Notes