Concept

Pros and Cons - Kernalized support vector machines

Pros:

  1. SVM can perform well on a range of datasets,

  2. SVM is versatile: different kernel functions can be specified, or custom kernels can be defined for specific datatypes.

  3. SVM works well for both low and high dimensional data.

Cons:

  1. Efficiency decreases as training set size increases.

  2. SVM needs careful normalization of input data and parameter tuning.

  3. SVM provides no direct probability estimates (but can be estimated using e.g., Platt scaling).

  4. It is difficult to interpret why a prediction was made.

  5. It is with high time complexity, which is O(n2)O(n^2) and n represents the number of data points.

0

2

Updated 2021-02-26

Tags

Data Science