Notes in Machine Learning with Python(3)
Environment Problem
- numpy and scipy
- normal ones:pip install pandas quandl sklearn numpy matplotlib
- pythonprogramming.net
- github
Kernels
change the linearly inseparable data into a linearly separable data
Why Kernels
1 | K(x ,x') = z.z' //The Kernel function |
Soft Margin SVM
google: svm kernel visualization overlapping —> softmax polynomial kernel
SVM Parameters
multi-classes
- OVR : one vs rest
- OVO : one vs one
- sklearn.svm.svc
- decision_function_shape(default = ‘ovr’)