-
Notifications
You must be signed in to change notification settings - Fork 35
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
Added support for sparse data matrices. #12
Conversation
The problems with travis seem to be an unrelated 0.6 issue. Any chance we can merge this? ...it is a pain keeping my own copy of GLMNet in sync since I need to use sparse data. |
Would love to have this functionality too. @slundberg I looked at the travis-ci log and saw this
Does this mean anything to you? |
I'm still new to Julia and don't know what happened between v 0.5 and v 0.6, though through some digging I believe the issue is in this test: https://github.com/simonster/GLMNet.jl/blob/master/test/runtests.jl#L121 At this point path.betas is a GLMNet.CompressedPredictorMatrix. I think the fix for travis might be a one line change here https://github.com/simonster/GLMNet.jl/blob/master/src/GLMNet.jl#L79 Does the function signature just need to change from
to
|
Hey! It does seem like a 0.6 change. Things are busy here for me right now
(just had a kid) so I won't be able to look into it but I think you are on
the right track.
…On Tue, Jul 4, 2017 at 8:51 PM Jeffrey Wong ***@***.***> wrote:
I'm still new to Julia and don't know what happened between v 0.5 and v
0.6, though through some digging I believe the issue is in this test:
https://github.com/simonster/GLMNet.jl/blob/master/test/runtests.jl#L121
At this point path.betas is a GLMNet.CompressedPredictorMatrix. I think
the fix for travis might be a one line change here
https://github.com/simonster/GLMNet.jl/blob/master/src/GLMNet.jl#L79
Does the function signature just need to change from
X::CompressedPredictorMatrix
to
X::GLMNet.CompressedPredictorMatrix
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#12 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADkTxXZT50Txdt_Yt6C90EUN_BVAZZuwks5sKwhDgaJpZM4JJ6fT>
.
|
Congratulations! Maybe @simonster can help me to verify the issue and then it can get merged? |
bump. @simonster would you be able to take a look? Thanks! |
I'm going to close and reopen this so that (hopefully) the Travis status hook will update to point to JuliaStats instead of Simon's account. That will make it a bit easier to look at the failures in depth. |
The issue causing the failure has been fixed. This PR now just needs some syntactic updates for deprecated syntax and it should be good to go. I can push some commits to this branch soon to fix it up if you're still busy, @slundberg. |
@ararslan That would be great. Thanks! |
Continued in #25 with Scott's authorship preserved. |
Needed when fitting to large sparse data sets. Addresses #9