Skip to main content

Naïve Bayesian Text Classifier on Redis

Project description

name:

redisbayes

description:

Naïve Bayesian Text Classifier on Redis

license:

MIT

What Is This?

It’s a spam filter. I wrote this to filter spammy comments from a high traffic forum website and it worked pretty well. It can work for you too :) It’s not tied to any particular format like email, it just deals with the raw text.

This is probably the only spam filtering library you’ll find for Python that’s simple (170 lines of code), works (30 lines of test code), and doesn’t suck.

Installation

From folder:

sudo python setup.py install

From cheeseshop:

sudo pip install redisbayes

From git:

sudo pip install git+git://github.com/jart/redisbayes.git

Basic Usage

import redis, redisbayes
rb = redisbayes.RedisBayes(redis=redis.Redis())

rb.train('good', 'sunshine drugs love sex lobster sloth')
rb.train('bad', 'fear death horror government zombie god')

assert rb.classify('sloths are so cute i love them') == 'good'
assert rb.classify('i fear god and love the government') == 'bad'

print rb.score('i fear god and love the government')

rb.untrain('good', 'sunshine drugs love sex lobster sloth')
rb.untrain('bad', 'fear death horror government zombie god')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

redisbayes-0.1.3.tar.gz (9.8 kB view details)

Uploaded Source

File details

Details for the file redisbayes-0.1.3.tar.gz.

File metadata

  • Download URL: redisbayes-0.1.3.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for redisbayes-0.1.3.tar.gz
Algorithm Hash digest
SHA256 3cda0a35bd5892a8215bf60eb1e8d49f80bc8571b83417a583092199f78e0fb1
MD5 26d9c2a240156e1844e59406ce13dc45
BLAKE2b-256 cc67744d4b8241acf42663e90421727874659814dc3e2e4b21cbf17f37f3cf67

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page