How can I moderate trolls algorithmically? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T04:11:48Z http://stackoverflow.com/feeds/question/981914 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically 19 How can I moderate trolls algorithmically? oscar 2009-06-11T15:45:06Z 2009-06-15T18:15:16Z <p>I'm writing a forum application but one of the things I'm concerned about is <a href="http://en.wikipedia.org/wiki/Internet%5Ftroll" rel="nofollow">trolls</a> - users who disrupt dialog with abusive speech or off-topic content. This goes beyond spam prevention because it includes people who are actually participating in a discussion but who either refuse or are unable to follow proper standards of behavior.</p> <p>Without an ability to moderate these types of users algorithmically (manual moderation would require too much time and attention), I don't see how the forum can be successful since their participation is not only disruptive but also discourages the types of users I am interested in, from participating.</p> <p><strong>Are there specific features I can add to my app that would minimize the disruptive effect of trolls while also minimizing the barriers to entry for new users?</strong></p> <p>The only feature I can think of that would not require as much active user moderation is identity verification - such as a cell phone number - which I would then actually have to verify belongs to this person. But this creates a significant barrier to entry.</p> <p>Having a "flag this" link next to user content seems itself to be prone to abuse and require moderation.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/981944#981944 21 Answer by Welbog for How can I moderate trolls algorithmically? Welbog 2009-06-11T15:50:40Z 2009-06-11T15:50:40Z <p>You can't determine trolling algorithmically without Star Trek-like universal language parsers.</p> <p>But you can do the next best thing, which is what Stack Overflow does: give various moderation rights to every user. Each user does a little bit of moderation so the primary moderators don't have to put in as much effort.</p> <p>After very little time, users on SO are able to flag any post as offensive for moderators to see. After more time, they can edit posts, tags, close questions and even become mini moderators themselves. On SO the process of getting these rights is procedural, but the moderation itself is not. That's a good approach.</p> <p>In lower-tech applications like simple forums or IRC channels, simply spreading the load is usually good enough. Instead of having a few moderators with all of the rights, you give regular, trustworthy users (of which there are probably many) a subset of rights to help with moderation. It works very well, since most active community members will do this kind of thing for free, just to see a better community.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/981946#981946 2 Answer by chocojosh for How can I moderate trolls algorithmically? chocojosh 2009-06-11T15:51:10Z 2009-06-11T15:51:10Z <p>The something awful forums have a $10 fee that can be only paid for by credit card. If you screw up you can be put on probation (lose posting access for X amount of time) or banned (have to pay another $10). </p> <p>Of course, your users may not be willing to pay money, but it does help to keep away children (unless their parents are willing to give credit card access) and from trolls that don't really care about what they're doing.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/981960#981960 2 Answer by Matthew Vines for How can I moderate trolls algorithmically? Matthew Vines 2009-06-11T15:53:08Z 2009-06-11T15:53:08Z <p>Your goal should be to use algorithms and automated processes to reduce the number of posts that your moderators must manually review. By running processes that check for posts containing hate speech or no text related to the original post (both very non trivial algorithms) you can reduce the workload for your moderators. It is also possible to promote your best community members to moderators to reduce the per person work load moderating the forum.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/981982#981982 5 Answer by Sam for How can I moderate trolls algorithmically? Sam 2009-06-11T15:56:47Z 2009-06-11T15:56:47Z <p>At the very least, you can have a list of offensive words/phrases and create a script that runs when a user with less than X posts, or has been registered for less than Y days makes a post. If one or more of the offensive words/phrases is found, the script could send you a "possible troll" email.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/982022#982022 7 Answer by Conrad for How can I moderate trolls algorithmically? Conrad 2009-06-11T16:04:34Z 2009-06-11T16:04:34Z <p>A good way to control such abuse is to eliminate, or reduce as much as possible, anonymity. If you have a scenario where people know their words can be traced back to them, you'd be surprised how much less likely they are to misbehave. </p> <p>This article on <a href="http://feedproxy.google.com/~r/readwriteweb/~3/XPscb6jn6n4/are%5Ftrolls%5Fruining%5Fsocial%5Fmedia.php" rel="nofollow">ReadWriteWeb</a> tackles the topic very well</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/982245#982245 4 Answer by Jon for How can I moderate trolls algorithmically? Jon 2009-06-11T16:45:26Z 2009-06-11T16:45:26Z <p>I would suggest a clever way of flagging replies, but be very specific. </p> <p>For example, registered users can flag a post/reply using various specific types such as:</p> <ul> <li>Personal attack, ad hominem</li> <li>Off topic</li> <li>Spam</li> </ul> <p>You could then provide a listing for admins to view the most flagged replies.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/982492#982492 0 Answer by Lopoc for How can I moderate trolls algorithmically? Lopoc 2009-06-11T17:29:12Z 2009-06-11T17:29:12Z <p>Probably it's just a brainstorming idea.... you can collect many troll's post, perform a frequencies analysys on using of some particular words, emoticons, exclamation marks ecc ecc, then you can find a threshold level for each of this particular items and develop an algorithm to ananlize each post.</p> <p>I reapeat, it's just a fool idea!</p> <p>enother one, to avoid, for example, randomly typed words, is entropy, you can calculate the entropy of the post.</p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/982792#982792 0 Answer by Toby for How can I moderate trolls algorithmically? Toby 2009-06-11T18:22:26Z 2009-06-11T18:22:26Z <p>Flags are a good way to go, do not underestimate the power of user feedback, whether that be by reputation, or by reporting offensive material to be reviewed by a mod. </p> <p>Algorithms are going to be an awkward way forward, the star trek language parser is a little unrealistic but you could have a couple of dictionaries and match words contained in each dictionary separately that would say for example match a word like "anorexia" in one instance and then guess if its being used in a positive context by the surrounding words then flag it as questionable (unless you want pro-ana content). You would have to have dictionaries of words and phrases suggesting a positive sense, words and phrases that suggest a negative sense, words sensitive in positive context, words sensitive in negative context, then match those against the thread of the conversation average use of those terms being positive/negative so that posts going in the opposite direction of the thread could be flagged on the basis of disruptive to the flow of conversation if its sensitive subject areas then content to be reviewed by an admin. Pretty wishy washy, and only a small step from blind censorship but its about all i can think of (in my tiny incapable mind lol). </p> http://stackoverflow.com/questions/981914/how-can-i-moderate-trolls-algorithmically/997537#997537 1 Answer by Steven for How can I moderate trolls algorithmically? Steven 2009-06-15T18:15:16Z 2009-06-15T18:15:16Z <p>Some people are trying to develop filters for stupidity or trolling. For example, <a href="http://stupidfilter.org/main/" rel="nofollow">Stupid Filter</a> claims to be "an open-source filter software that can detect rampant stupidity in written English."</p>