classifier icon indicating copy to clipboard operation
classifier copied to clipboard

Bayesian classifier with Redis backend

Results 2 classifier issues
Sort by recently updated
recently updated
newest added

Sadly does not support UTF-8. The problem lies here: ``` javascript getWords : function(doc) { if (_(doc).isArray()) { return doc; } var words = doc.split(/\W+/); return _(words).uniq(); } ``` ```...