Skip to content

scottenriquez/BotDetection-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

BotDetection (Requires Python 3.X)

Neural Network trained to detect spammers on Reddit. Usage is as simple as:

from models import Classifier 
t = 0.9 #confidence threshold to return True  

Algorithm = Classifier(t)
print(Algorithm.is_a_bot('ThaChippa'))

The is_a_bot method from the previous example returns the following tuple: (True, 0.9999999999956763), where the first item is the result and the second item is the network's confidence.

TODO: Ignore NSFW/Foreign Languages

About

Bot Detection Algorithm for Reddit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages