Learn Before
Concept
sklearn.svm.SVC
This function creates a support vector classifier (SVC) object. Two important parameters are:
- C: Regularization parameter. In other words, this controls the cost of misclassification on the training data.
- kernel: specifies the kernel type to be used in the algorithm. This parameter can be set to "linear", "poly", "rbf", "sigmoid", or "precomputed"
0
1
Updated 2021-01-29
Tags
Data Science
Related
sklearn.preprocessing.OneHotEncoder
sklearn.neighbors.KNeighborsClassifier
sklearn.dummy.DummyClassifier
sklearn.preprocessing.LabelEncoder
Train Test Split Function
sklearn.datasets.make_regression
sklearn.datasets.make_friedman1
sklearn.datasets.make_classification
sklearn.svm.SVC
sklearn.tree.DecisionTreeClassifier
sklearn.ensemble.RandomForestClassifier
sklearn.dummy.DummyRegressor
sklearn.model_selection.GridSearchCV
sklearn.ensemble.RandomForestRegressor
Cross-Validation in scikit-learn