Skip to content
Snippets Groups Projects
Commit 9a444cff authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Use the Char version of split() instead of the String one for efficiency

parent a386ced2
No related branches found
No related tags found
No related merge requests found
......@@ -38,9 +38,9 @@ object MLUtils {
*/
def loadLabeledData(sc: SparkContext, dir: String): RDD[(Double, Array[Double])] = {
sc.textFile(dir).map { line =>
val parts = line.split(",")
val parts = line.split(',')
val label = parts(0).toDouble
val features = parts(1).trim().split(" ").map(_.toDouble)
val features = parts(1).trim().split(' ').map(_.toDouble)
(label, features)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment