Open In App

How To Use Classification Machine Learning Algorithms in Weka ?

Weka tool is an open-source tool developed by students of Waikato university which stands for Waikato Environment for Knowledge Analysis having all inbuilt machine learning algorithms. It is used for solving real-life problems using data mining techniques. The tool was developed using the Java programming language so that it is platform-independent.

The tool itself contains some data sets in the data file of the application, We can them to implement our algorithms. The dataset we are going to use is breast-cancer.arff. Classification can be defined by Prediction models that predict continuous-valued functions, while classification models predict categorical class marks.



In this article, we are going to learn the classification implementation on a dataset using WEKA tool. We will use two different classifiers for this.

Part Classifier

Steps involved in this experiment are:



It’s worth noting that the model’s classification accuracy is about 71%. This suggests that we will be able to find more jobs. (Either in the preprocessing or in the selection of existing classification parameters)

OneR Classifier

Steps involved in this experiment are:

Note that the classification accuracy of the model is about 65% only. This suggests that we will be able to find more jobs. (Either in the preprocessing or in the selection of existing classification parameters)

Article Tags :