aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/mllib/linalg.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/mllib/linalg.py')
-rw-r--r--python/pyspark/mllib/linalg.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/pyspark/mllib/linalg.py b/python/pyspark/mllib/linalg.py
index a57c0b3ae0..9f3b0baf9f 100644
--- a/python/pyspark/mllib/linalg.py
+++ b/python/pyspark/mllib/linalg.py
@@ -755,7 +755,7 @@ class SparseMatrix(Matrix):
return SparseMatrix, (
self.numRows, self.numCols, self.colPtrs.tostring(),
self.rowIndices.tostring(), self.values.tostring(),
- self.isTransposed)
+ int(self.isTransposed))
def __getitem__(self, indices):
i, j = indices
@@ -801,7 +801,7 @@ class SparseMatrix(Matrix):
# TODO: More efficient implementation:
def __eq__(self, other):
- return np.all(self.toArray == other.toArray)
+ return np.all(self.toArray() == other.toArray())
class Matrices(object):