开发者

WEKA: how to get the score from classifyInstance?

I'm using a FilteredClassifier.classifyInstance() to classify my instances in weka.

I have 2 classes (true and false) and I have many positives, so I actually need to know the score of each isntance to get the best positive.

You know how I could get the score from my weka classifier ?

thanks

Update: I've also tried to use distributionForInstance, but for each instance I always get an array with [1.0, 0.0].

I actually need to compare several instances to see which one is the most reliable, which one has more changes to have been classified corr开发者_开发技巧ectly.


distributionForInstance(Instance anInstance) is the method you need. It gives you a Double array showing the confidence for each of your classes. I am using Weka 3.6. and it works well for me. If you always get the same values, your classifier is not trained well and not discriminative at all. In that case, you should always get the same class predicted. Did you balance your training set?


distributionForInstance(Instance anInstance) seems right.

Maybe it is not working for you because the classifier doesn't know you'd need the confidence values? For example for LibSVM on Weka Java, you need to set setProbabilityEstimates to true, in order to use the scores.


After you have run the classifier on your data, you can visualize the data by right clicking on the test in the " Result list " There are lots of other funcitons on this right click menu that will allow you to gain scores from weka classifiers.


Suppose that your model is already trained.

Then, you can make predictions with distributionForInstance. This command produces an array consisting of two items (because there are two classes on your dataset: true and false)

double[] distributions = model.distributionForInstance(new_instance);

After then, index of the greatest item in distributions array would be classification result.

Assume that distributions = {0.9638458988630731, 0.03615410113692686}. In this case, your new instance would be classified as class_0 because 1st item is greater than 2nd item in distributions array.

You can also get this index with classifyInstance command.

double classifiedIndex = model.classifyInstance(new_instance);

classifiedIndex value would be 0 for distributions = {0.9638458988630731, 0.03615410113692686}.

Finally, you can get the class name as true or false instead of class index.

new_instance.setClassValue(classifiedIndex); //firstly, assigned classified index to new_instance.
String classifiedText = new_instance.stringValue(new_instance.numAttributes());

This code block produces false.

You might examine this GitHub project for both regression and classification.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜