-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-8999][MLlib] PrefixSpan non-temporal sequences #7818
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
Use PrefixSpan.scala instead of Prefixspan.scala. Delete Prefixspan.scala
Use PrefixSpanSuite.scala instead of PrefixspanSuite.scala, Delete PrefixspanSuite.scala.
8b74bbf to
7d41217
Compare
|
Test build #39177 has finished for PR 7818 at commit
|
7d41217 to
41ba908
Compare
|
Test build #39181 has finished for PR 7818 at commit
|
|
Jenkins retest this please |
|
Test build #39184 has finished for PR 7818 at commit
|
|
Test build #175 has finished for PR 7818 at commit
|
|
@feynmanliang Could you fix code style so Jenkins can run tests? |
|
Test build #39231 has finished for PR 7818 at commit
|
|
@mengxr Please wait until I integrate @zhangjiajin 's updated #7646 tests and rebase so his commits are in the history. |
f5cdff4 to
03156ca
Compare
|
@mengxr Ready for review |
|
Test build #39249 has finished for PR 7818 at commit
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove blank line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
|
Except inline comments, my major comment is that we should process one item at a time rather than generating all subsets for each itemset. But we can also merge this first and update the implementation later because we also have API change to merge before 1.5. |
|
OK, lets merge this and #7837 to get API down before feature freeze |
|
Test build #39299 has finished for PR 7818 at commit
|
|
Test build #39309 has finished for PR 7818 at commit
|
|
@mengxr do we plan to merge this before 1.5? |
|
Merged into master. Thanks! |
mengxr Please review after #7818 merges and master is rebased. Continues work by rikima Closes #7400 Author: Feynman Liang <fliang@databricks.com> Author: masaki rikitoku <rikima3132@gmail.com> Closes #7837 from feynmanliang/SPARK-7400-genericItems and squashes the following commits: 8b2c756 [Feynman Liang] Remove orig 92443c8 [Feynman Liang] Style fixes 42c6349 [Feynman Liang] Style fix 14e67fc [Feynman Liang] Generic prefixSpan itemtypes b3b21e0 [Feynman Liang] Initial support for generic itemtype in public api b86e0d5 [masaki rikitoku] modify to support generic item type
@mengxr Extends PrefixSpan to non-temporal itemsets. Continues work by @zhangjiajin
Closes #7646