Guest User

Untitled

a guest
Jun 25th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. ### What is the C Parameter?
  2.  
  3. * The C parameter tells the SVM optimization how much you want to avoid misclassifying each training example.
  4. * For large values of C, the optimization will choose a smaller-margin hyperplane if that hyperplane does a better job of getting all the training points classified correctly.
  5. * Conversely, a very small value of C will cause the optimizer to look for a larger-margin separating hyperplane, even if that hyperplane misclassifies more points.
  6. * For very tiny values of C, you should get misclassified examples, often even if your training data is linearly separable.
Add Comment
Please, Sign In to add comment