Currently best spam filter algorithm

14,271

Solution 1

It's good to look into supervised learning techniques. There've been a number of studies where the Multinomial Naive Bayes Classifier has been used for spam email filtering with a lot of success. If it worked for spam email filtering, then it should work with SMS filtering. What you need is a huge dataset of example spam SMS texts and train the classifier with it.

Also, it may be helpful to look into the Support Vector Machine, which; although less widely used in spam filtering; is a much more powerful technique.

Also, just training the algorithms on raw text may not quite be the best way forward. There was a study by Mehran Sahami from 1998 that found that they achieved superior performance when they took other heuristics into consideration (e.g. was the email sent to a mailing list? was the email sent from a domain name that ended in either ".edu",".com",".org"? did the email contain multiple punctuation marks ("!!!")?, and so forth).

But start off with the Multinomial Naive Bayes Classifier. It's very simple to implement, and it's very easy to use, and from personal experience: it has a very short training time, as well.

Solution 2

As I understand it most modern spam filtering is a combination of an implementation of Bayes' theorem and some heuristics, e.g. sender blacklists, standards compliance, sending patterns.

The easiest place to implement this in the mobile phone network would probably be at the SMS message centre, since the volume is higher, which makes a lot of the heuristics easier to implement.

Share:
14,271

Related videos on Youtube

ahmy
Author by

ahmy

Updated on June 04, 2022

Comments

  • ahmy
    ahmy almost 2 years

    What is the currently best method to detect spam ? especially on mobile text message. are there any resource or comparison analysis ?

    • moinudin
      moinudin over 13 years
      Are you asking from a programmer's or user's perspective? i.e. Do you want a spam detection algorithm to implement or do you want to detect spam in your own email?
  • ahmy
    ahmy about 13 years
    It's because im developing application client mobile device