Skip to content
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

[SPARK-7202] [MLlib] [PySpark] Add SparseMatrixPickler to SerDe #5775

Closed
wants to merge 1 commit into from

Conversation

MechCoder
Copy link
Contributor

Utilities for pickling and unpickling SparseMatrices using SerDe

@MechCoder MechCoder changed the title [SPARK-7202] Add SparseMatrixPickler to SerDe [SPARK-7202] [MLlib] [PySpark] Add SparseMatrixPickler to SerDe Apr 29, 2015
@MechCoder
Copy link
Contributor Author

ping @jkbradley @mengxr

@SparkQA
Copy link

SparkQA commented Apr 29, 2015

Test build #31271 has finished for PR 5775 at commit 59fcf52.

  • This patch fails Scala style tests.
  • This patch merges cleanly.
  • This patch adds no public classes.
  • This patch adds the following new dependencies:
    • spark-unsafe_2.10-1.4.0-SNAPSHOT.jar

@SparkQA
Copy link

SparkQA commented Apr 29, 2015

Test build #31273 has finished for PR 5775 at commit 25a1819.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds no public classes.
  • This patch adds the following new dependencies:
    • spark-unsafe_2.10-1.4.0-SNAPSHOT.jar

@MechCoder
Copy link
Contributor Author

@mengxr Can you please have a look at this? Thanks in advance! :)

@mengxr
Copy link
Contributor

mengxr commented May 5, 2015

LGTM. Let's call Jenkins another time.

@MechCoder
Copy link
Contributor Author

test this please

@SparkQA
Copy link

SparkQA commented May 5, 2015

Test build #31848 has finished for PR 5775 at commit 25a1819.

  • This patch fails Spark unit tests.
  • This patch merges cleanly.
  • This patch adds no public classes.

@SparkQA
Copy link

SparkQA commented May 5, 2015

Test build #31853 has finished for PR 5775 at commit 6c59a9a.

  • This patch fails to build.
  • This patch merges cleanly.
  • This patch adds no public classes.

@MechCoder
Copy link
Contributor Author

@mengxr I'm not sure what the test failure is about..

@MechCoder
Copy link
Contributor Author

test this please

@SparkQA
Copy link

SparkQA commented May 5, 2015

Test build #31857 has finished for PR 5775 at commit 6c59a9a.

  • This patch fails to build.
  • This patch merges cleanly.
  • This patch adds no public classes.

@SparkQA
Copy link

SparkQA commented May 5, 2015

Test build #31860 has finished for PR 5775 at commit 7e689dc.

  • This patch fails to build.
  • This patch merges cleanly.
  • This patch adds no public classes.

@MechCoder
Copy link
Contributor Author

test this please

@SparkQA
Copy link

SparkQA commented May 5, 2015

Test build #31870 has finished for PR 5775 at commit 7e689dc.

  • This patch passes all tests.
  • This patch merges cleanly.
  • This patch adds no public classes.

asfgit pushed a commit that referenced this pull request May 5, 2015
Utilities for pickling and unpickling SparseMatrices using SerDe

Author: MechCoder <[email protected]>

Closes #5775 from MechCoder/spark-7202 and squashes the following commits:

7e689dc [MechCoder] [SPARK-7202] Add SparseMatrixPickler to SerDe

(cherry picked from commit 5ab652c)
Signed-off-by: Xiangrui Meng <[email protected]>
@mengxr
Copy link
Contributor

mengxr commented May 5, 2015

Merged into master and branch-1.4. Thanks!

@asfgit asfgit closed this in 5ab652c May 5, 2015
@MechCoder MechCoder deleted the spark-7202 branch May 5, 2015 15:55
asfgit pushed a commit that referenced this pull request May 7, 2015
…items

Add
1. Class methods squared_dist
3. parse
4. norm
5. numNonzeros
6. copy

I made a few vectorizations wrt squared_dist and dot as well. I have added support for SparseMatrix serialization in a separate PR (#5775) and plan to complete support for Matrices in another PR.

Author: MechCoder <[email protected]>

Closes #5872 from MechCoder/local_linalg_api and squashes the following commits:

a8ff1e0 [MechCoder] minor
ce3e53e [MechCoder] Add error message for parser
1bd3c04 [MechCoder] Robust parser and removed unnecessary methods
f779561 [MechCoder] [SPARK-7328] Pyspark.mllib.linalg.Vectors: Missing items

(cherry picked from commit 347a329)
Signed-off-by: Joseph K. Bradley <[email protected]>
asfgit pushed a commit that referenced this pull request May 7, 2015
…items

Add
1. Class methods squared_dist
3. parse
4. norm
5. numNonzeros
6. copy

I made a few vectorizations wrt squared_dist and dot as well. I have added support for SparseMatrix serialization in a separate PR (#5775) and plan to complete support for Matrices in another PR.

Author: MechCoder <[email protected]>

Closes #5872 from MechCoder/local_linalg_api and squashes the following commits:

a8ff1e0 [MechCoder] minor
ce3e53e [MechCoder] Add error message for parser
1bd3c04 [MechCoder] Robust parser and removed unnecessary methods
f779561 [MechCoder] [SPARK-7328] Pyspark.mllib.linalg.Vectors: Missing items
jeanlyn pushed a commit to jeanlyn/spark that referenced this pull request May 28, 2015
Utilities for pickling and unpickling SparseMatrices using SerDe

Author: MechCoder <[email protected]>

Closes apache#5775 from MechCoder/spark-7202 and squashes the following commits:

7e689dc [MechCoder] [SPARK-7202] Add SparseMatrixPickler to SerDe
jeanlyn pushed a commit to jeanlyn/spark that referenced this pull request May 28, 2015
…items

Add
1. Class methods squared_dist
3. parse
4. norm
5. numNonzeros
6. copy

I made a few vectorizations wrt squared_dist and dot as well. I have added support for SparseMatrix serialization in a separate PR (apache#5775) and plan to complete support for Matrices in another PR.

Author: MechCoder <[email protected]>

Closes apache#5872 from MechCoder/local_linalg_api and squashes the following commits:

a8ff1e0 [MechCoder] minor
ce3e53e [MechCoder] Add error message for parser
1bd3c04 [MechCoder] Robust parser and removed unnecessary methods
f779561 [MechCoder] [SPARK-7328] Pyspark.mllib.linalg.Vectors: Missing items
jeanlyn pushed a commit to jeanlyn/spark that referenced this pull request Jun 12, 2015
Utilities for pickling and unpickling SparseMatrices using SerDe

Author: MechCoder <[email protected]>

Closes apache#5775 from MechCoder/spark-7202 and squashes the following commits:

7e689dc [MechCoder] [SPARK-7202] Add SparseMatrixPickler to SerDe
jeanlyn pushed a commit to jeanlyn/spark that referenced this pull request Jun 12, 2015
…items

Add
1. Class methods squared_dist
3. parse
4. norm
5. numNonzeros
6. copy

I made a few vectorizations wrt squared_dist and dot as well. I have added support for SparseMatrix serialization in a separate PR (apache#5775) and plan to complete support for Matrices in another PR.

Author: MechCoder <[email protected]>

Closes apache#5872 from MechCoder/local_linalg_api and squashes the following commits:

a8ff1e0 [MechCoder] minor
ce3e53e [MechCoder] Add error message for parser
1bd3c04 [MechCoder] Robust parser and removed unnecessary methods
f779561 [MechCoder] [SPARK-7328] Pyspark.mllib.linalg.Vectors: Missing items
nemccarthy pushed a commit to nemccarthy/spark that referenced this pull request Jun 19, 2015
Utilities for pickling and unpickling SparseMatrices using SerDe

Author: MechCoder <[email protected]>

Closes apache#5775 from MechCoder/spark-7202 and squashes the following commits:

7e689dc [MechCoder] [SPARK-7202] Add SparseMatrixPickler to SerDe
nemccarthy pushed a commit to nemccarthy/spark that referenced this pull request Jun 19, 2015
…items

Add
1. Class methods squared_dist
3. parse
4. norm
5. numNonzeros
6. copy

I made a few vectorizations wrt squared_dist and dot as well. I have added support for SparseMatrix serialization in a separate PR (apache#5775) and plan to complete support for Matrices in another PR.

Author: MechCoder <[email protected]>

Closes apache#5872 from MechCoder/local_linalg_api and squashes the following commits:

a8ff1e0 [MechCoder] minor
ce3e53e [MechCoder] Add error message for parser
1bd3c04 [MechCoder] Robust parser and removed unnecessary methods
f779561 [MechCoder] [SPARK-7328] Pyspark.mllib.linalg.Vectors: Missing items
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants