-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-7753][MLLIB] Update KernelDensity API #6279
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
|
Merged build triggered. |
|
Merged build started. |
|
Test build #33136 has started for PR 6279 at commit |
|
Test build #33136 timed out for PR 6279 at commit |
|
Merged build finished. Test FAILed. |
|
Test FAILed. |
|
test this please |
|
Merged build triggered. |
|
Merged build started. |
|
Test build #33144 has started for PR 6279 at commit |
|
Test build #33144 has finished for PR 6279 at commit
|
|
Merged build finished. Test PASSed. |
|
Test PASSed. |
|
lgtm (on the api change) since it is more consistent with rest of mllib. |
|
Merged into master and branch-1.4. Since the algorithm doesn't change, I asked rxin to review the API changes. |
Update `KernelDensity` API to make it extensible to different kernels in the future. `bandwidth` is used instead of `standardDeviation`. The static `kernelDensity` method is removed from `Statistics`. The implementation is updated using BLAS, while the algorithm remains the same. sryza srowen Author: Xiangrui Meng <[email protected]> Closes #6279 from mengxr/SPARK-7753 and squashes the following commits: 4cdfadc [Xiangrui Meng] add example code in the doc 767fd5a [Xiangrui Meng] update KernelDensity API (cherry picked from commit 947ea1c) Signed-off-by: Xiangrui Meng <[email protected]>
|
LGTM as well |
Update `KernelDensity` API to make it extensible to different kernels in the future. `bandwidth` is used instead of `standardDeviation`. The static `kernelDensity` method is removed from `Statistics`. The implementation is updated using BLAS, while the algorithm remains the same. sryza srowen Author: Xiangrui Meng <[email protected]> Closes apache#6279 from mengxr/SPARK-7753 and squashes the following commits: 4cdfadc [Xiangrui Meng] add example code in the doc 767fd5a [Xiangrui Meng] update KernelDensity API
Update `KernelDensity` API to make it extensible to different kernels in the future. `bandwidth` is used instead of `standardDeviation`. The static `kernelDensity` method is removed from `Statistics`. The implementation is updated using BLAS, while the algorithm remains the same. sryza srowen Author: Xiangrui Meng <[email protected]> Closes apache#6279 from mengxr/SPARK-7753 and squashes the following commits: 4cdfadc [Xiangrui Meng] add example code in the doc 767fd5a [Xiangrui Meng] update KernelDensity API
Update `KernelDensity` API to make it extensible to different kernels in the future. `bandwidth` is used instead of `standardDeviation`. The static `kernelDensity` method is removed from `Statistics`. The implementation is updated using BLAS, while the algorithm remains the same. sryza srowen Author: Xiangrui Meng <[email protected]> Closes apache#6279 from mengxr/SPARK-7753 and squashes the following commits: 4cdfadc [Xiangrui Meng] add example code in the doc 767fd5a [Xiangrui Meng] update KernelDensity API
Update
KernelDensityAPI to make it extensible to different kernels in the future.bandwidthis used instead ofstandardDeviation. The statickernelDensitymethod is removed fromStatistics. The implementation is updated using BLAS, while the algorithm remains the same. @sryza @srowen