-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-21027][ML][PYTHON] Added tunable parallelism to one vs. rest in both Scala mllib and Pyspark #19110
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
Closed
Closed
[SPARK-21027][ML][PYTHON] Added tunable parallelism to one vs. rest in both Scala mllib and Pyspark #19110
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
b69f201
Added tunable parallelism to the pyspark implementation of one vs. re…
ajaysaini725 e750d3e
Fixed python style.
ajaysaini725 81d458b
Added functionality for tuning parellelism in the Scala implementatio…
ajaysaini725 2133378
Fixed code according to comments. Added both annotations and unit tes…
ajaysaini725 c59b1d8
Modified parallel one vs rest to use futures.
ajaysaini725 5f635a2
Put the parallelism parameter as well as the function for getting an …
ajaysaini725 4431ffc
Responded to pull request comments.
ajaysaini725 a841b3e
Made changes based on pull request comments.
ajaysaini725 a95a8af
Fixed based on pull request comments
ajaysaini725 d45bc23
Fixed based on comments
ajaysaini725 30ac62d
Reverting merge and adding change that would fix merge conflict (maki…
ajaysaini725 cc634d2
Merge branch 'master' into spark-21027
ajaysaini725 ce14172
Style fix with docstring
ajaysaini725 1c9de16
Fixed based on comments.
ajaysaini725 9f34404
Fixed style issue.
ajaysaini725 585a3f8
Fixed merge conflict
ajaysaini725 f65381a
Fixed remaining part of merge conflict.
ajaysaini725 2a335fe
Fixed style problem
ajaysaini725 049f371
Merge branch 'master' into spark-21027
WeichenXu123 ddc2ff4
address review feedback issues
WeichenXu123 fc6fd5e
update migration guide
WeichenXu123 7d0849e
update desc
WeichenXu123 edcf85c
fix style
WeichenXu123 7a1d404
merge master & resolve conflicts
WeichenXu123 c24d4e2
update out-of-date shared.py
WeichenXu123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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.
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.
missing since annotation
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.
Thanks! I create a PR to fix this.