Tagged Questions
1
vote
1answer
106 views
Bayesian algorithm returning 0
I'm trying to get the top rated photos within the last week through MySQL and PHP. I've found that the Bayesian formula may be what I need, but I've been messing with it to no avail.
The following ...
-1
votes
1answer
134 views
How automatic language translation can be achieved through Bayes Theorem? [closed]
I have googled a lot time to find a solution for making my custom automatic language translator. But I have failed. But I have known some good topic. That how a automatic language translation is done. ...
0
votes
1answer
155 views
Implementing Bayes classifier (in PHP)
I have a theoretical question about a Naive Bayes Classifier. Assume I have trained the classifier with the following training data:
class word count
-----------------
pos good 1
sun 1
...
4
votes
1answer
674 views
Using a Naive Bayes Classifier to classify tweets: some problems
Using, amongst other sources, various posts here on Stackoverflow, I'm trying to implement my own PHP classier to classify tweets into a positive, neutral and negative class. Before coding, I need to ...
0
votes
2answers
177 views
Which should be the list of ignored words for the Naive Bayesian Classifier?
I am working with Naive Bayesian classifier over PHP (http://www.xhtml.net/php/PHPNaiveBayesianFilter)
And there's a list of words which can be ignored while training the system. Those words are not ...
2
votes
1answer
726 views
Apply Bayesian average in a NON 5-star rating system
I am looking forward to apply the bayesian approach to prioritize a list that could take the number of likes, dislikes and review counts into consideration.
The approach listed in here relies on the ...
0
votes
1answer
144 views
Lightweight Bayes filter for larger data sets
I would like to create yet another spam detection for my CMS. Currently I do see three options:
use a simple php class and store tokens in MySQL
install spamassassin and use a php-connector
...
0
votes
1answer
155 views
Integrating a 1-10 voting system effectively without common pitfalls
I'm planning on integrating a reasonable ranking/voting system into an existing application.
I'm familiar with how the traditional 5 star rating systems work and know the common pitfalls/problems ...
2
votes
2answers
855 views
Bayesian Rating
$avg_num_votes = 18; // Average number of votes in all products
$avg_rating = 3.7; // Average rating for all products
$this_num_votes = 6; // Number of votes for this product
$this_rating = 4; // ...
3
votes
1answer
277 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 ...
5
votes
1answer
875 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.: ...