-
Notifications
You must be signed in to change notification settings - Fork 532
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
MNMG Logistic Regression (dask-glm wrapper) #3512
MNMG Logistic Regression (dask-glm wrapper) #3512
Conversation
sync with upstream
sync with upstream
sync with upstream
Sync with upstream
sync with upstream
sync with upstream
sync with upstream
sync with upstream
Codecov Report
@@ Coverage Diff @@
## branch-0.19 #3512 +/- ##
===============================================
+ Coverage 72.91% 80.87% +7.96%
===============================================
Files 214 229 +15
Lines 16856 17777 +921
===============================================
+ Hits 12290 14378 +2088
+ Misses 4566 3399 -1167
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
While I'm fixing the CI errors, I'd like to raise some issues with this PR. It lacks several functionalities of other
The functionalities 2) and 4) can be added quite easily but they will look different from other Currently it subclassed the This implementation also has some different hyperparameters from other
So I have two questions:
Thank you all. Please let me know. |
Does this implementation implicitly support a GPU based
This sounds like a great idea! |
Update yaml
…' into fea_dask_glm_wrapper
test three solvers
@gpucibot merge |
In this PR, I'll wrap `dask-glm` models so that it accepts `dask_cudf Dataframes` and behaves like other `cuml.dask` models. `dask-glm` provides three estimators: `LogisticRegression`, `LinearRegression` and `PoissonRegression`. MNMG `LogisticRegression` is requested by @beckernick . @JohnZed for visibility. Thank you all. Authors: - Jiwei Liu (https://github.com/daxiongshu) - Nick Becker (https://github.com/beckernick) - Dante Gama Dessavre (https://github.com/dantegd) Approvers: - Ray Douglass (https://github.com/raydouglass) - AJ Schmidt (https://github.com/ajschmidt8) - Dante Gama Dessavre (https://github.com/dantegd) URL: rapidsai#3512
In this PR, I'll wrap
dask-glm
models so that it acceptsdask_cudf Dataframes
and behaves like othercuml.dask
models.dask-glm
provides three estimators:LogisticRegression
,LinearRegression
andPoissonRegression
. MNMGLogisticRegression
is requested by @beckernick . @JohnZed for visibility. Thank you all.