當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark DenseVector.dot用法及代碼示例


本文簡要介紹 pyspark.ml.linalg.DenseVector.dot 的用法。

用法:

dot(other)

計算兩個向量的點積。我們支持(Numpy 數組、列表、SparseVector 或 SciPy 稀疏)和一維或二維目標 NumPy 數組。相當於調用兩個向量的numpy.dot。

例子

>>> dense = DenseVector(array.array('d', [1., 2.]))
>>> dense.dot(dense)
5.0
>>> dense.dot(SparseVector(2, [0, 1], [2., 1.]))
4.0
>>> dense.dot(range(1, 3))
5.0
>>> dense.dot(np.array(range(1, 3)))
5.0
>>> dense.dot([1.,])
Traceback (most recent call last):
    ...
AssertionError: dimension mismatch
>>> dense.dot(np.reshape([1., 2., 3., 4.], (2, 2), order='F'))
array([  5.,  11.])
>>> dense.dot(np.reshape([1., 2., 3.], (3, 1), order='F'))
Traceback (most recent call last):
    ...
AssertionError: dimension mismatch

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.ml.linalg.DenseVector.dot。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。