-
Notifications
You must be signed in to change notification settings - Fork 75
Update normalization parameters and add estimator params validation #210
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
Changes from 6 commits
567b241
fd6e4a5
ac310c1
7df7818
5536db7
a2a7515
a627a86
648c512
c98811c
d554f41
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,21 +61,24 @@ | |
| { | ||
| "data": { | ||
| "dataset": "hepmass", | ||
| "split_kwargs": { "train_size": 0.1, "test_size": null } | ||
| "split_kwargs": { "train_size": 0.1, "test_size": null }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Seems like this is the only case where benchmark behavior changes - is it intended?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it was done for a reason but let me check the convergence for both options
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Essentially, there's no effect on the result: accuracy and number of iterations stays the same |
||
| "preprocessing_kwargs": { "normalize": "standard" } | ||
| }, | ||
| "algorithm": { "estimator_params": {"C": 1e-5} } | ||
| }, | ||
| { | ||
| "data": { | ||
| "dataset": "cifar", | ||
| "split_kwargs": { "train_size": 0.1, "test_size": null } | ||
| "split_kwargs": { "train_size": 0.1, "test_size": null }, | ||
| "preprocessing_kwargs": { "normalize": "mean" } | ||
| }, | ||
| "algorithm": { "estimator_params": {"C": 1e-9} } | ||
| }, | ||
| { | ||
| "data": { | ||
| "dataset": "gisette", | ||
| "split_kwargs": { "train_size": 2000, "test_size": null } | ||
| "split_kwargs": { "train_size": 2000, "test_size": null }, | ||
| "preprocessing_kwargs": { "normalize": "standard" } | ||
| }, | ||
| "algorithm": { "estimator_params": {"C": 1e1} } | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -4,14 +4,19 @@ | |||||||||
| "high-load dbscan datasets": { | ||||||||||
| "data": [ | ||||||||||
| { | ||||||||||
| "dataset": ["cifar", "road_network", "covtype"], | ||||||||||
| "dataset" : "cifar", | ||||||||||
| "split_kwargs": { "ignore" : true }, | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
| "preprocessing_kwargs": { "normalize": "mean" } | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "dataset": ["road_network", "covtype"], | ||||||||||
| "split_kwargs": { "ignore": true }, | ||||||||||
| "preprocessing_kwargs": { "normalize": true } | ||||||||||
| "preprocessing_kwargs": { "normalize": "standard" } | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "dataset": "susy", | ||||||||||
| "split_kwargs": { "train_size": 800000 }, | ||||||||||
| "preprocessing_kwargs": { "normalize": true } | ||||||||||
| "preprocessing_kwargs": { "normalize": "standard" } | ||||||||||
| }, | ||||||||||
| { | ||||||||||
| "source": "make_blobs", | ||||||||||
|
|
||||||||||
Uh oh!
There was an error while loading. Please reload this page.