Uh oh!
There was an error while loading. Please reload this page.
[Spark-11478] [ML] ML StringIndexer return inconsistent schema - #9440
[Spark-11478] [ML] ML StringIndexer return inconsistent schema#9440rekhajoshm wants to merge 5 commits into
Conversation
Pulling functionality from apache spark
pull latest from apache spark
Pulling functionality from apache spark
Pulling functionality from apache spark
SparkQA
commented
Nov 3, 2015
Test build #44942 has finished for PR 9440 at commit
|
mengxr
commented
Nov 3, 2015
cc @yanboliang |
yanboliang
commented
Nov 4, 2015
I think the patch is not appropriate because it does not pass regression test and will produce error in other test cases. I have found the cause of this bug, but not figure out a way to resolve it. Please see my comments at SPARK-11478. I think disable |
rekhajoshm
commented
Nov 4, 2015
Thanks @yanboliang for your comments.My findings were similar to yours, and that nullable is the cause, driven by attr.toStructField().This was a few secs quick look/pull. Agree it needs more conversation. @mengxr |
SparkQA
commented
Apr 13, 2016
Test build #2781 has finished for PR 9440 at commit
|
jkbradley
commented
Sep 6, 2016
Is this still active? If not, can you please close this issue pending discussion on the JIRA? Thanks! |
## What changes were proposed in this pull request? This PR proposes to close some stale PRs and ones suggested to be closed by committer(s) Closesapache#12415Closesapache#14765Closesapache#15118Closesapache#15184Closesapache#15183Closesapache#9440Closesapache#15023Closesapache#14643Closesapache#14827 ## How was this patch tested? N/A Author: hyukjinkwon <gurwls223@gmail.com> Closesapache#15198 from HyukjinKwon/stale-prs.
With a quick look, verified that two print of transformed schema return different nullable
StructType(StructField(id,IntegerType,false), StructField(label,StringType,true), StructField(labelIndex,DoubleType,true))
StructType(StructField(id,IntegerType,false), StructField(label,StringType,true), StructField(labelIndex,DoubleType,false))