-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[WIP] Sparse and Multioutput LabelEncoder #3592
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
hamsal
commented
Aug 26, 2014
- sparse and multioutput fit
- sparse and multioutput transform
- sparse and multioutput fit_transform
- sparse and multioutput inverse_transform
- Maintain ValueError on unseen labels
- test for multioutput
- test for sparse formats
Thanks @hamsal !!! |
At this juncture, I would like to confirm that we think sparse multioutput data is a common enough occurrence to use sparse matrices for its representation. Until #3350, I had assumed we were only interested in sparse representation of multilabel data, where spareness is common. |
@jnothman Do you suggest supporting sparse multilabel data and dense multioutput multiclass, but not sparse multioutput multiclass? |
I think jnothman is for supporting sparse multioutput multiclass since he suggested that sparse label encoding code from the knn PR be implemented here |
That was a conditional support: we should definitely support multioutput On 27 August 2014 10:49, hamsal notifications@github.com wrote:
|
If there's any desire to complete #3483 (#3243), someone should adopt #3483 Thanks, On Tue, Aug 26, 2014 at 9:58 PM, jnothman notifications@github.com wrote:
|
Thanks! Thanks, On Thu, Aug 28, 2014 at 1:11 PM, hamsal notifications@github.com wrote:
|
This is implemented in OneHotEncoder afaik. If not, please open an issue describing the use-case. |