-
Notifications
You must be signed in to change notification settings - Fork 276
Updating parameters of SVC #40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…ization which do not seem useful to optimize
* fmin return_argmin=False
This avoids crash if first trials are unsuccessful
* transform: X * 1 makes a copy to avoid a sklearn/numpy weirdness
around read-only views
|
It might also be worth throwing into this same request that with LinearSVC, loss labels like 'l1' and 'l2' have been deprecated in favor of 'hinge' and 'squared_hinge.' |
|
Good idea, I'll add that in as well. I also need to figure out how to clean up these commit messages, a bunch of older ones are showing up for this pull request and I'm not sure why. Can probably just squash them together. |
|
The parameter update has also been included in #41 so this PR is obsolete |
Newest version of scikit-learn changed the API for the gamma parameter. Updating to match these changes.