我需要计算从RowMatrix计算的平均向量与同一RowMatrix内的所有向量之间的相似性。
要计算平均向量,我正在这样做(例如在Java中):
RowMatrix matrix = new RowMatrix(vectorOfUserToItems.rdd());
Vector meanVector = matrix.computeColumnSummaryStatistics().mean();
如何将此向量添加到RowMatrix“矩阵”中,以便我可以计算相似度,或者我应该以某种方式做到不同?