Is your feature request related to a problem?
A support vector machine (SVM) is a well-known ML model that we don't support at the moment. It can be used for classification and regression.
Desired solution
For classification:
- Add a class
SupportVectorMachine to safeds.ml.classical.classification that wraps SVC of scikit-learn
- Make it a subclass of
Classifier
For regression:
- Add a class
SupportVectorMachine to safeds.ml.classical.regression that wraps SVR of scikit-learn
- Make it a subclass of
Regressor