Tagged Questions
The bayesian tag has no wiki summary.
20
votes
5answers
1k views
Building a NetHack bot: is Bayesian Analysis a good strategy?
A friend of mine is beginning to build a NetHack bot (a bot that plays the Roguelike game: NetHack). There is a very good working bot for the similar game Angband, but it works partially because of ...
16
votes
5answers
2k views
Bayesian spam filtering library for Python
I am looking for a Python library which does Bayesian Spam Filtering. I looked at SpamBayes and OpenBayes, but both seem to be unmaintained (I might be wrong).
Can anyone suggest a good Python (or ...
16
votes
5answers
7k views
probability interview question, random sampling
This is a good one because it's so counter-intuitive:
Imagine an urn filled with balls, two-thirds of which are of one color and one-third of which are of another. One individual has drawn 5 balls ...
11
votes
4answers
1k views
pythonic implementation of Bayesian networks for a specific application
This is why I'm asking this question:
Last year I made some C++ code to compute posterior probabilities for a particular type of model (described by a Bayesian network). The model worked pretty well ...
11
votes
3answers
2k views
What's the best open-source Java Bayesian spam filter library?
In other answers at Stackoverflow it's been suggested that Weka is good, but there are others (Classifier4j, jBNC, Naiban).
Does anyone have actual experience with these?
11
votes
7answers
2k views
Bayesian filtering for spam
I was wondering if there is any good and clean oo implementation of bayesian filtering for spam and text classification? For learning purposes.
10
votes
4answers
437 views
Clojure or Scheme bayesian classification libraries?
Any pointers to scheme/racket or clojure bayesian classification libraries? I need one for a toy/learning project that I'm going to do.
9
votes
3answers
4k views
Which Python Bayesian text classification modules are similar to dbacl?
A quick Google search reveals that there are a good number of Bayesian classifiers implemented as Python modules. If I want wrapped, high-level functionality similar to dbacl, which of those modules ...
8
votes
2answers
707 views
Orange vs NLTK for Content Classification in Python
We need a content classification module. Bayesian classifier seems to be what I am looking for. Should we go for Orange or NLTK ?
8
votes
7answers
498 views
Understanding Bayes' Theorem
I'm working on an implementation of A Naive Bayes Classifier. Programming Collective Intelligence introduces this subject by describing Bayes Theorem as:
Pr(A | B) = Pr(B | A) x Pr(A)/Pr(B)
As well ...
8
votes
3answers
224 views
Way to infer the size of the userbase of a site from sampling taken usernames
I just had a clever idea (I think).
Suppose you wanted to estimate the size of a userbase of a site which does not publicize this information.
People are more likely to have acquired different ...
7
votes
2answers
279 views
wondering if Bayes classifier is right approach?
I'm wondering if a Bayes classifier makes sense for an application where the same phrase "served cold" (for example) is "good" when associated some things (beer, soda) but "bad" when related to other ...
7
votes
1answer
1k views
Naive Bayesian for Topic detection using “Bag of Words” approach
I am trying to implement a naive bayseian approach to find the topic of a given document or stream of words. Is there are Naive Bayesian approach that i might be able to look up for this ?
Also, i ...
7
votes
4answers
961 views
Calculating the probability of a token being spam in a Bayesian spam filter
I recently wrote a Bayesian spam filter, I used Paul Graham's article Plan for Spam and an implementation of it in C# I found on codeproject as references to create my own filter.
I just noticed that ...
7
votes
5answers
1k views
Naive Bayesian spam filtering effectiveness
How effective is naive Bayesian filtering for filtering spam?
I heard that spammers easily bypass them by stuffing extra non-spam-related words. What programming techniques can you use with Bayesian ...
6
votes
3answers
378 views
Artificial Intelligence, Text Classifier
I am new to AI. I am working an application that text classification via machine learning. The application needs to classify different parts of an HTML document. For example, most webpages have ...
6
votes
1answer
193 views
What is a good open source package for building flexible spam detection on a large Rails site?
My site is getting larger and it's starting to attract a lot of spam through various channels. The site has a lot of different types of UGC (profiles, forums, blog comments, status updates, private ...
6
votes
2answers
273 views
What does a Bayesian Classifier score represent?
I'm using the ruby classifier gem whose classifications method returns the scores for a given string classified against the trained model.
Is the score a percentage? If so, is the maximum difference ...
6
votes
3answers
1k views
Classifying Documents into Categories
I've got about 300k documents stored in a Postgres database that are tagged with topic categories (there are about 150 categories in total). I have another 150k documents that don't yet have ...
6
votes
6answers
4k views
Any Naive Bayesian Classifier in python?
Dear Everyone
I have tried the Orange Framework for Naive Bayesian classification. The methods are extremely unintuitive, and the documentation is extremely unorganized. Does anyone here have another ...
6
votes
5answers
347 views
Algorithms to find stuff a user would like based on other users likes
I'm thinking of writing an app to classify movies in an HTPC based on what the family members like.
I don't know statistics or AI, but the stuff here looks very juicy. I wouldn't know where to start ...
6
votes
2answers
362 views
Is there a Bayesian filter library for .NET
Is there a Bayesian filter library for .NET?
I would like to setup a group of folders and have emails automatically moved to those folders based on what has been previously moved to the folder.
If ...
6
votes
2answers
802 views
Measuring the performance of classification algorithm
I've got a classification problem in my hand, which I'd like to address with a machine learning algorithm ( Bayes, or Markovian probably, the question is independent on the classifier to be used). ...
5
votes
3answers
167 views
AI / Statistical methods for determining the name of a colour
I'm thinking about writing a little library to make a guess at the name of an (RGB value) colour, from a predetermined list of candidates.
My first attempt was based purely on pythagorean distance ...
5
votes
1answer
240 views
Persistence on Java CI-Bayes object
Has anyone ever persisted a training set for CI-Bayes? I have sample code from this site: http://www.theserverside.com/news/thread.tss?thread%5Fid=49773
here is the code:
FisherClassifier fc=new ...
5
votes
1answer
1k views
Implementing Bayesian classifier in Ruby?
I would like to implement a simple Bayesian classification system to do rudimentary sentiment analysis on short messages. Practical suggestions for implementing in Ruby would be welcome. Suggestions ...
5
votes
4answers
1k views
Naive bayes calculation in sql
I want to use naive bayes to classify documents into a relatively large number of classes. I'm looking to confirm whether an mention of an entity name in an article really is that entity, on the basis ...
4
votes
1answer
140 views
Finding the most probable anagram from a list of letters [closed]
In August 2007, the I-35W Mississippi River bridge in Minneapolis collapsed, killing 13 people and injuring 145. Four years later, a memorial was erected for the victims of this disaster. ...
4
votes
1answer
354 views
Any framework for real-time correlation/analysis of event-stream (aka CEP) in Erlang?
Would like to analyze a stream of events, sharing certain characteristics (s.a. a common source), and within a given time-window, ultimately to correlate those multiple events and draw some inference ...
4
votes
1answer
448 views
PHP implementation of Bayes classificator: Assign topics to texts
In my news page project, I have a database table news with the following structure:
- id: [integer] unique number identifying the news entry, e.g.: *1983*
- title: [string] title of the text, e.g.: ...
4
votes
5answers
476 views
naive bayesian spam filter question
I am planning to implement spam filter using Naive Bayesian classification model.
Online I see a lot of info on Naive Bayesian classification, but the problem is its a lot of mathematical stuff, ...
4
votes
2answers
146 views
Detecting unknown class in a bayes classifier
If you have a bayes classifier trained for a set of classes, how to detect if the output is significant enough to choose a class? It would be useful for detecting samples wich can't be asigned to a ...
4
votes
2answers
133 views
blindly classifying new trends in incoming data
how do news outlets like google news automatically classify and rank documents about emerging topics, like "obama's 2011 budget"?
i've got a pile of articles tagged with baseball data like player ...
4
votes
2answers
226 views
Designing bayesian networks
I have a basic question about Bayesian networks.
Let's assume we have an engine, that with
1/3 probability can stop working.
I'll call this variable ENGINE.
If it stops working, then your car
...
4
votes
3answers
2k views
Simple Sentiment Analysis
It appears that the simplest, naivest way to do basic sentiment analysis is with a Bayesian classifier (confirmed by what I'm finding here on SO). Any counter-arguments or other suggestions?
4
votes
1answer
758 views
Is there an R package for learning a Dirichlet prior from counts data
I'm looking for a an R package which can be used to train a Dirichlet prior from counts data. I'm asking for a colleague who's using R, and don't use it myself, so I'm not too sure how to look for ...
3
votes
2answers
159 views
Document Analysis and Tagging
Let's say I have a bunch of essays (thousands) that I want to tag, categorize, etc. Ideally, I'd like to train something by manually categorizing/tagging a few hundred, and then let the thing loose.
...
3
votes
2answers
194 views
How to filter emails using content and subject?
In my application(C#) i need to filter emails based on their content. If an email is a double-opt in need to send it to a specified email address if it's a normal email i should send it to another ...
3
votes
1answer
376 views
Laplacian smoothing to Biopython
I am trying to add Laplacian smoothing support to Biopython's Naive Bayes code 1 for my Bioinformatics project.
I have read many documents about Naive Bayes algorithm and Laplacian smoothing and I ...
3
votes
4answers
1k views
Looking for open source naive Bayesian Classifier in C# for a Twitter sentiment analysis project
I've found a similar project here: http://stackoverflow.com/questions/573768/sentiment-analysis-for-twitter-in-python . However, I'm working on C# and need to use a naive Bayesian Classifier that is ...
3
votes
2answers
238 views
Implementing a question analyzer for auto tagging
What are good resources to go to for implementing a question analyzer?
I am trying to figure out how to auto-tag questions to make it easier for non-technical users to ask questions. I've found that ...
3
votes
3answers
267 views
Calculating spam probability
I am building a website in python/django and want to predict wether a user submission is valid or wether it is spam.
Users have an accept rate on their submissions, like this website has.
Users can ...
3
votes
2answers
1k views
Loopy Belief Propagation code example
Does anybody know of a working code example of the sum-product algorithm for (loopy) belief for Bayesian Networks? I have scoured the earth for a couple days but haven't had much luck. I'm indifferent ...
3
votes
3answers
2k views
Calculating Mutual Information For Selecting a Training Set in Java
Scenario
I am attempting to implement supervised learning over a data set within a Java GUI application. The user will be given a list of items or 'reports' to inspect and will label them based on ...
2
votes
1answer
197 views
C# C++ dropping packets
Is there a way to drop packets like iptables in Unix using c# or c++?
Im looking to develop a Bayesian neural network utilising fuzzy logic for a Intrusion Prevention System and im not sure which way ...
2
votes
1answer
116 views
How to employ Naive Bayes on a sentence
How would I write the pseudocode to classify a sentence as good or bad using the naive bayes algorithm?
I assume the first step would be to get experimental data to go from such that you have ...
2
votes
1answer
155 views
Adding an extra factor (number of clicks) to a Bayesian ranking system
I run a music website for amateur musicians where we have a rating system based on a score out of 10, which is then calculated into an overall score out of 100. We have a "credibility" points system ...
2
votes
1answer
460 views
Log likelihood to implement Naive Bayes for Text Classification
I am implementing Naive Bayes algorithm for text classification. I have ~1000 documents for training and 400 documents for testing. I think I've implemented training part correctly, but I am confused ...
2
votes
2answers
209 views
Tweet value prediction: What sort of analysis (Bayesian?) might predict how much a Twitter user will value a tweet?
I’m thinking of adding a feature to the TalkingPuffin Twitter client, where, after some training with the user, it can rank incoming tweets according to their predicted value. What solutions are there ...
2
votes
1answer
187 views
Python Orange Distributed Computing
I am currently working with the Python package Orange to run some classification tests on large sets of data. I am primarily using the Naive Bayes method, and I know from other applications that is is ...