1.0.3 • Published 6 years ago

spam-detection v1.0.3

Weekly downloads
12
License
ISC
Repository
github
Last release
6 years ago

spam-detection

Small package based on Naive Bayes classifier to classify messages as spam or ham.

Install

npm install spam-detection

Usage

const spamcheck = require('spam-detection');

const ans = spamcheck.detect('hello how are you') // invoke detect method

console.log(ans); // ham

const result = spamcheck.getResult('hello how are you')

console.log(result); // [ { label: 'ham', value: 0.01866475233309404 },
                        { label: 'spam', value: 0.0030509691313711416 } ]

License

ISC

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

0.1.0

6 years ago

0.1.2

6 years ago

0.1.9

6 years ago

0.0.9

6 years ago

0.0.7

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.1

6 years ago

1.0.0

6 years ago