Implement GLM estimators in dask-ml#94
Merged
TomAugspurger merged 14 commits intodask:masterfrom Dec 1, 2017
Merged
Conversation
Moving them here from dask-glm
|
Thanks @TomAugspurger - you beat me to it - Is the goal for this PR to make |
Member
Author
|
dask-glm will still be a required dependency, as the optimizers and regularizers will still live there. Just the scikit-learn style estimators are moving here. |
MLnick
reviewed
Nov 22, 2017
| return X, y | ||
|
|
||
|
|
||
| def make_poisson(n_samples=1000, n_features=100, n_informative=2, scale=1.0, |
There was a problem hiding this comment.
This seems to be exactly the same as make_counts above? Is it meant to be a copy-over of the make_classification and make_regression from GLM?
TomAugspurger
added a commit
to dsevero/dask-ml
that referenced
this pull request
Jan 15, 2018
* Implement GLM estimators in dask-ml Moving them here from dask-glm * Flake8 fixups * Added multipledispatch * Refactor Match scikit-learn style, handle dataframe * More API changes * More solver kwarg validation * Cleanup imports * Docstring * Added release notes * Reformat * Encoding * Remove duplicate poisson
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Moving them here from dask-glm.
No changes to the API yet.