[SPARK-2550][MLLIB][APACHE SPARK] Support regularization and intercept in pyspark's linear methods#1613
[SPARK-2550][MLLIB][APACHE SPARK] Support regularization and intercept in pyspark's linear methods#1613miccagiann wants to merge 11 commits intoapache:masterfrom miccagiann:master
Conversation
…-clustering.md & mllib-collaborative-filtering.md].
…in the already committed examples so as to eradicate the call of 'productElement' function whenever is possible.
…regression method.
|
Can one of the admins verify this patch? |
|
Hi AmplabJenkins, I would like to ask you something technical. How is it possible to hide all my previous commits related to a previously closed pull request and only include to this pull request my last commit? Any suggestions? |
|
Hi @miccagiann, Until it's merged, this pull request will be automatically updated to contain any commits added to the branch that you opened it from. It looks like you've opened this PR from the master branch of your repository and accidentally included some unwanted commits. I'd recommend closing this pull request, creating a new topic branch in your repository that contains only the commits that you want to be included in the pull request, and opening a new pull request based off that branch (you might find GitHub's "Using pull requests" guide to be helpful). I like to keep my git fetch apache # Fetch the latest commits from the upstream Spark repo
# (might be named something other than 'apache')
git checkout master
git checkout -b old-master # Create a new branch pointing to the current master, so we don't lose those commits.
git checkout master # Switch back to your master branch
git reset --hard apache/master # Force-reset your master branch to match the apache master branch
git checkout -b my-feature-branch # Create a new branch to develop your pull request inNow you should be on git log old-master # List the commits in your old branch
git cherry-pick sha-of-commit-you-wantNow, |
|
(PS AmplabJenkins is not a person, it's the Jenkins bot. It would blow my mind if he answered!) Josh gives everything you need to know there to fix your setup. By the way, the command to update your |
|
Thank you guys, I am going to resolve this issue. |
|
I am closing this pull request and I am going to create a new one that is going to include the new commit only. Thank you so much for your help! |
SPARK-2550
Python API doesn't provide options to set regularization parameter and intercept in linear methods, which should be fixed in v1.1.