如何从 Scala 中的 DataFrame 在 Spark 中创建分布式稀疏矩阵
Posted
技术标签:
【中文标题】如何从 Scala 中的 DataFrame 在 Spark 中创建分布式稀疏矩阵【英文标题】:How to create a distributed sparse matrix in Spark from DataFrame in Scala 【发布时间】:2019-11-20 15:04:21 【问题描述】:问题
请帮助找到从 DataFrame 中的(用户、特征、值)记录创建分布式矩阵的方法,其中特征及其值存储在一列中。
数据摘录如下,但有大量用户和功能,并没有为用户测试所有功能。因此,很多特征值都是空的,要归结为 0。
例如,血液测试可能具有糖水平、胆固醇水平等作为特征。如果这些级别不可接受,则将 1 设置为值。但并非所有功能都会针对用户(或患者)进行测试。
+----+-------+-----+
|user|feature|value|
+----+-------+-----+
| 14| 0| 1|
| 14| 222| 1|
| 14| 200| 1|
| 22| 0| 1|
| 22| 32| 1|
| 22| 147| 1|
| 22| 279| 1|
| 22| 330| 1|
| 22| 363| 1|
| 22| 162| 1|
| 22| 811| 1|
| 22| 290| 1|
| 22| 335| 1|
| 22| 681| 1|
| 22| 786| 1|
| 22| 789| 1|
| 22| 842| 1|
| 22| 856| 1|
| 22| 881| 1|
+----+-------+-----+
如果特征已经是列,那么有办法解释。
Spark - How to create a sparse matrix from item ratings Calculate Cosine Similarity Spark Dataframe How to convert a DataFrame to a Vector.dense in scala但事实并非如此。因此,一种方法可能是旋转数据框以应用这些方法。
+----+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|user| 0| 32|147|162|200|222|279|290|330|335|363|681|786|789|811|842|856|881|
+----+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 14| 1| 0| 0| 0| 1| 1| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0|
| 22| 1| 1| 1| 1| 0| 0| 1| 1| 1| 1| 1| 1| 1| 1| 1| 1| 1| 1|
+----+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
然后使用行到向量的转换。我想使用其中之一:
向量汇编器 org.apache.spark.mllib.linalg.Vectors.fromML org.apache.spark.mllib.linalg.distributed.MatrixEntry但是,由于将有许多空值归为 0,因此旋转后的数据帧将消耗更多的内存空间。旋转分布在多个节点之间的大型数据帧也会导致大洗牌。
因此,寻求意见、想法、建议。
相关
Spark - How to create a sparse matrix from item ratings Calculate Cosine Similarity Spark Dataframe How to convert a DataFrame to a Vector.dense in scala VectorAssembler Scalable Sparse Matrix Multiplication in Apache Spark Spark MLlib Data Types | Apache Spark Machine Learning Linear Algebra and Distributed Machine Learning in Scala using Breeze and MLlib环境
火花 2.4.4
【问题讨论】:
有趣的问题。但目前尚不清楚 - 为什么需要这个?而且-您是否仅限于火花?看起来您可以将所有数据保存在 HBase 或任何其他列式存储中。 如here所示使用pivot怎么样? 【参考方案1】:解决方案
-
为每个输入行创建一个 RDD[(user, feature)]。
groupByKey 创建一个 RDD[(user, [feature+])]。
创建一个 RDD[IndexedRow],其中每个 IndexedRow 代表所有现有功能的下方。
+----+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
|user| 0| 32|147|162|200|222|279|290|330|335|363|681|786|789|811|842|856|881|
+----+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 14| 1| 0| 0| 0| 1| 1| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0| 0|
-
将 RDD[IndexedRow] 转换为 IndexedRowMatrix。
对于乘积运算,将RowIndexedMatrix转换为支持分布式乘积运算的BlockMatrix。
将每条原始记录转化为IndexedRow
import org.apache.spark.mllib.linalg._
import org.apache.spark.mllib.linalg.distributed._
import org.apache.spark.rdd.RDD
import org.apache.spark.sql.Row
def toIndexedRow(userToFeaturesMap:(Int, Iterable[Int]), maxFeatureId: Int): IndexedRow =
userToFeaturesMap match
case (userId, featureIDs) =>
val featureCountKV = featureIDs.map(i => (i, 1.0)).toSeq
new IndexedRow (
userId,
Vectors.sparse(maxFeatureId + 1, featureCountKV)
)
val userToFeatureCounters= featureData.rdd
.map(rowPF => (rowPF.getInt(0), rowPF.getInt(1))) // Out from ROW[(userId, featureId)]
.groupByKey() // (userId, Iterable(featureId))
.map(
userToFeatureIDsMap => toIndexedRow(userToFeatureIDsMap, maxFeatureId)
) // IndexedRow(userId, Vector((featureId, 1)))
已创建 IndexedRowMatrix
val userFeatureIndexedMatrix = new IndexedRowMatrix(userToFeatureCounters)
通过 BlockMatrix 转置 IndexedRowMatrix 作为 IndexedRowMatrix 不支持转置
val userFeatureBlockMatrixTransposed = userFeatureBlockMatrix
.transpose
使用 BlockMatrix 作为 IndexedRowMatrix 创建的产品需要右侧的 Local DenseMatrix。
val featuresTogetherIndexedMatrix = userFeatureBlockMatrix
.multiply(userFeatureBlockMatrixTransposed)
.toIndexedRowMatrix
【讨论】:
【参考方案2】:也许您可以将每一行转换为 json 表示,例如:
"user": 14
"features" : [
"feature" : 0
"value" : 1
,
"feature" : 222
"value" : 1
]
但这一切都取决于您以后如何使用“分布式矩阵”。
【讨论】:
以上是关于如何从 Scala 中的 DataFrame 在 Spark 中创建分布式稀疏矩阵的主要内容,如果未能解决你的问题,请参考以下文章
当数组很大时,在Scala中的Spark Dataframe中从数组列创建单独的列[重复]
在scala DataFrame中的单行中查找不同列的最大值
如何使用Scala的DataFrame比较表中的每一列而不关心列是啥? [重复]
从Scala中的任意数据数据获取Spark DataFrame的最简单方法是什么?