简体   繁体   English

从DataFrame到RDD [LabeledPoint]

[英]From DataFrame to RDD[LabeledPoint]

I am trying to implement a document classifier using Apache Spark MLlib and I am having some problems representing the data. 我正在尝试使用Apache Spark MLlib实现文档分类器,我遇到了一些代表数据的问题。 My code is the following: 我的代码如下:

import org.apache.spark.sql.{Row, SQLContext}
import org.apache.spark.sql.types.{StringType, StructField, StructType}
import org.apache.spark.ml.feature.Tokenizer
import org.apache.spark.ml.feature.HashingTF
import org.apache.spark.ml.feature.IDF

val sql = new SQLContext(sc)

// Load raw data from a TSV file
val raw = sc.textFile("data.tsv").map(_.split("\t").toSeq)

// Convert the RDD to a dataframe
val schema = StructType(List(StructField("class", StringType), StructField("content", StringType)))
val dataframe = sql.createDataFrame(raw.map(row => Row(row(0), row(1))), schema)

// Tokenize
val tokenizer = new Tokenizer().setInputCol("content").setOutputCol("tokens")
val tokenized = tokenizer.transform(dataframe)

// TF-IDF
val htf = new HashingTF().setInputCol("tokens").setOutputCol("rawFeatures").setNumFeatures(500)
val tf = htf.transform(tokenized)
tf.cache
val idf = new IDF().setInputCol("rawFeatures").setOutputCol("features")
val idfModel = idf.fit(tf)
val tfidf = idfModel.transform(tf)

// Create labeled points
val labeled = tfidf.map(row => LabeledPoint(row.getDouble(0), row.get(4)))

I need to use dataframes to generate the tokens and create the TF-IDF features. 我需要使用数据帧来生成令牌并创建TF-IDF功能。 The problem appears when I try to convert this dataframe to a RDD[LabeledPoint]. 当我尝试将此数据帧转换为RDD [LabeledPoint]时出现问题。 I map the dataframe rows, but the get method of Row return an Any type, not the type defined on the dataframe schema (Vector). 我映射数据帧行,但Row的get方法返回Any类型,而不是数据帧架构(Vector)上定义的类型。 Therefore, I cannot construct the RDD I need to train a ML model. 因此,我无法构建我需要训练ML模型的RDD。

What is the best option to get a RDD[LabeledPoint] after calculating a TF-IDF? 在计算TF-IDF后获得RDD [LabeledPoint]的最佳选择是什么?

Casting the object worked for me. 铸造物体对我有用。

Try: 尝试:

// Create labeled points
val labeled = tfidf.map(row => LabeledPoint(row.getDouble(0), row(4).asInstanceOf[Vector]))

You need to use getAs[T](i: Int): T 你需要使用getAs[T](i: Int): T

// Create labeled points
import org.apache.spark.mllib.linalg.{Vector, Vectors}
val labeled = tfidf.map(row => LabeledPoint(row.getDouble(0), row.getAs[Vector](4)))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM