Github user bersprockets commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22079#discussion_r209736691
  
    --- Diff: 
mllib/src/main/scala/org/apache/spark/mllib/feature/ChiSqSelector.scala ---
    @@ -144,7 +144,7 @@ object ChiSqSelectorModel extends 
Loader[ChiSqSelectorModel] {
           val dataArray = Array.tabulate(model.selectedFeatures.length) { i =>
             Data(model.selectedFeatures(i))
           }
    -      
spark.createDataFrame(dataArray).repartition(1).write.parquet(Loader.dataPath(path))
    +      spark.createDataFrame(sc.makeRDD(dataArray, 
1)).write.parquet(Loader.dataPath(path))
    --- End diff --
    
    @dongjoon-hyun Thanks, I will include the other commit and also update the 
title.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to