-
Notifications
You must be signed in to change notification settings - Fork 48
shogun lars,lasso fixes #15
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
base: master
Are you sure you want to change the base?
Conversation
| ['datasets/madelon_X.csv', 'datasets/madelon_y.csv']] | ||
| options: '-l 0.01' | ||
|
|
||
| LARS: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there reason this was left out? methods/shogun/lars.py was already present , so curious.
|
@karlnapf some fixes for LARS benchmarks input, which lead to wrong results. |
| model.train(RealFeatures(X.T)) | ||
| model.set_labels(RegressionLabels(responsesData)) | ||
| model.train(RealFeatures(inputData.T)) | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comparing with scikit lasso doesnt make sense actually since its uses coordinate descent to solve as opposed to lars.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure I get this.
Definitely, it only makes sense to compare against this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok I just checked. This should not be merged.
@Saurabh7 you are right that comparing sklearn's LASSO with Shogun's LARS doesnt make any sense.
Instead, can you do the right comparison of the various LARS implementations?
|
Can one of the admins verify this patch? |
|
This is old stuff |
No description provided.