Data Classification using multi-class SVM in MATLAB
Data classification simply means categorizing structured or unstructured data based on type, content and other features. Data classification has improved significantly over time. Today, this technology is used for a variety of purposes, often in support of data security initiatives. But data may be classified for a number of reasons, including ease of access, maintaining regulatory compliance, and to meet various other business or personal objectives. MATLAB is an efficient tool for data classification. Supervised and semi-supervised learning algorithms can be used for binary and multiclass problems.
What is a Support Vector machine?
Support Vector Machine (SVM) is a machine learning algorithm that analyses the data for classification and regression analysis. An SVM maps training data to points in space so as to maximize the width of the gap between the two categories. Then test data are mapped into that same space and predicted to which category they belong based on which side of the gap they fall.
A basic code for classification using multiSVM is below
Comments
Post a Comment