-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
gamma="auto" in SVC #8361
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
Comments
Agreed on every sentence of this issue (including the last one :( ).
|
'auto-scale'
…On 16 February 2017 at 02:18, Gael Varoquaux ***@***.***> wrote:
Agreed on every sentence of this issue (including the last one :( ).
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#8361 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAEz6-tRiq9IaVfwCAxHZvKaiDNhvT7-ks5rcxc8gaJpZM4MB1or>
.
|
'auto-scale'
Or maybe simple "scale". But what worries me most is yet another
deprecation cycle. The danger is the instability that it brings to
scikit-learn. But if, on average, it make things work really better...
|
I think this is worth it, so let's do |
For whoever fixes this, it needs a deprecation cycle |
I'm currently working on this. |
We had a release 0.19 in which this change wasn't included (we still have |
I would be interested to know why is that so (i.e. why |
Uh oh!
There was an error while loading. Please reload this page.
It's a bit unfortunate that we just changed the parametrization of
SVC
'sgamma
(from 0 to"auto"
), but I just realized that using1 / (n_features * X.std())
would be a much much better default than the current1 / n_features
.Not sure there's a good way to change it though.
I wonder whether we should at some point do a breaking release like matplotlib did, but that might lead to more issues than it solves... (I kind of regret that we didn't change the cv=3 to cv=5 default when doing the
model_selection
refactoring).The text was updated successfully, but these errors were encountered: