Uh oh!
There was an error while loading. Please reload this page.
[SPARK-18080][ML][PySpark] Locality Sensitive Hashing (LSH) Python API. - #15768
[SPARK-18080][ML][PySpark] Locality Sensitive Hashing (LSH) Python API.#15768yanboliang wants to merge 2 commits into
Conversation
SparkQA
commented
Nov 4, 2016
Test build #68135 has finished for PR 15768 at commit
|
SparkQA
commented
Nov 4, 2016
Test build #68136 has finished for PR 15768 at commit
|
yanboliang
commented
Nov 4, 2016
sethah
commented
Nov 7, 2016
I began to review this, but got sidetracked with a lot of the details we are currently discussing on the original LSH PR. |
This can now proceed since http://github.com/apache/spark/pull/15874 is ready to be merged. Sorry for the delay! This will need to slip to 2.2 |
jkbradley
commented
Jan 4, 2017
Pinging on this: What's a reasonable ETA for updating the PR? Thanks @yanboliang ! |
yanboliang
commented
Jan 4, 2017
@jkbradley I just came back from vacation, and will update this PR before the weekend. Thanks. |
SparkQA
commented
Jan 24, 2017
Test build #3550 has finished for PR 15768 at commit
|
jkbradley
commented
Jan 27, 2017
Btw, @yanboliang and @Yunni did you sync? I'm fine with the takeover, but don't want to stomp on toes. Both can be listed as authors when this gets merged. Should we close this issue with the other taking its place? |
yanboliang
commented
Jan 28, 2017
I'm OK to close this one and glad to help to review #16715 , but I think I will have time until next week. |
…e Hashing ## What changes were proposed in this pull request? This pull request includes python API and examples for LSH. The API changes was based on yanboliang 's PR apache#15768 and resolved conflicts and API changes on the Scala API. The examples are consistent with Scala examples of MinHashLSH and BucketedRandomProjectionLSH. ## How was this patch tested? API and examples are tested using spark-submit: `bin/spark-submit examples/src/main/python/ml/min_hash_lsh.py` `bin/spark-submit examples/src/main/python/ml/bucketed_random_projection_lsh.py` User guide changes are generated and manually inspected: `SKIP_API=1 jekyll build` Author: Yun Ni <yunn@uber.com> Author: Yanbo Liang <ybliang8@gmail.com> Author: Yunni <Euler57721@gmail.com> Closesapache#16715 from Yunni/spark-18080.
…e Hashing ## What changes were proposed in this pull request? This pull request includes python API and examples for LSH. The API changes was based on yanboliang 's PR apache#15768 and resolved conflicts and API changes on the Scala API. The examples are consistent with Scala examples of MinHashLSH and BucketedRandomProjectionLSH. ## How was this patch tested? API and examples are tested using spark-submit: `bin/spark-submit examples/src/main/python/ml/min_hash_lsh.py` `bin/spark-submit examples/src/main/python/ml/bucketed_random_projection_lsh.py` User guide changes are generated and manually inspected: `SKIP_API=1 jekyll build` Author: Yun Ni <yunn@uber.com> Author: Yanbo Liang <ybliang8@gmail.com> Author: Yunni <Euler57721@gmail.com> Closesapache#16715 from Yunni/spark-18080.
What changes were proposed in this pull request?
Add
MinHashandRandomProjectionPython API.How was this patch tested?
Add doc tests.