Tagged Questions
0
votes
1answer
85 views
Odd Results using Bayesian Averaging
I am using the following code to come up with a Bayesian average for my product reviews:
@bayesian = (((Review.count * Review.average(:score)) + (style.reviews.count ...
2
votes
2answers
380 views
Naive Bayes in Ruby
We are trying to do naive bayes classification in Ruby.
Currently we are using http://ai4r.rubyforge.org/
We couldn't get it working for float values and have about 20% points lower accuracy with ...
6
votes
1answer
325 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 ...
7
votes
2answers
708 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 ...
1
vote
1answer
340 views
Translating Ruby code to Java
I have never used ruby but need to translate this code to java.
Can anyone help me.
This is the code in Ruby.
DEFAULT_PRIOR = [2, 2, 2, 2, 2]
## input is a five-element array of integers
## output ...
13
votes
2answers
2k 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 ...