Tagged Questions
0
votes
1answer
105 views
Java, Weka: NaiveBayesUpdateable: Cannot handle numeric class
I am trying to use NaiveBayesUpdateable classifier from Weka. My data contains both nominal and numeric attributes:
@relation cars
@attribute country {FR, UK, ...}
@attribute city {London, ...
-1
votes
1answer
129 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
126 views
How to implement information retrieval techniques in Naive Bayesian Spam Filter?
I have implemented a Naive Bayesian Spam Filter which learns on a given data set and then predicts any new input as spam or ham.But now I want to incorporate the information retrieval techniques in it ...
4
votes
2answers
487 views
Handling missing attributes in Naive Bayes classifier
I am writing a Naive Bayes classifier for performing indoor room localization from WiFi signal strength. So far it is working well, but I have some questions about missing features. This occurs ...
0
votes
1answer
52 views
Query relaxation - change constraints
This is a new field to me and I'm not sure if this is what I'm looking for.
I need to change the constraints when querying a database. An example of this is a job search web app. If a user is ...
4
votes
1answer
122 views
Bayesian classification for semi-structured data in Java
I would like to train and use a bayesian classifier for the following situation:
Semi-structured data - basically an XML schema
Information is contained in multiple plain text fields
Some fields / ...
0
votes
2answers
92 views
Finding the number of times each word in a hashset occurs in text document
I'm implementing a Naive Bayes text classification algorithm in Java.
What I have done so far is, declare a hashset called Vocabulary which stores all the unique words from a given text file (test ...
0
votes
1answer
900 views
Weka: How do I get the prediction value in java for a test instance?
I have successfully trained a classifier (bayesnet) and constructed a test set (ARFF-format), which has one instance, with one missing value.
Evaluation eTest = new Evaluation(trainingInstance);
...
0
votes
1answer
436 views
Using mahout's classifier in my web application
I have developed a bayesian classifier using apache mahout. Now I would like to integrate it with my Java based web application, that is given a training model, the web app should be able to predict ...
2
votes
3answers
5k views
Open Source Naïve Bayes Classifier written in Java
I'm looking for an Open Source Naïve Bayes Classifier library written in Java. Would appreciate any help in finding one.
Is Naïve Bayes Classifier the same as Bayesian Network?
0
votes
2answers
433 views
error with NaiveBayes classifier when classify one instance with pretrained model
I have a trained dataset with 125 records. I'm going to classify new instance using NaiveBayesUpdatable. but when I run naiveBayes (under windows, using weka 3.4), I get the
following error :
...
3
votes
2answers
308 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 ...
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 ...
1
vote
1answer
765 views
classifier4J problem
I'm using the BayesianClassifier class to classify spam. The problem is that compound words aren't being recognized.
For instance if I add led zeppelin as a match, a sentence containing it won't be ...
3
votes
3answers
3k 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 ...
5
votes
2answers
316 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 ...
13
votes
3answers
3k 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?