Github user maropu commented on a diff in the pull request:
https://github.com/apache/incubator-hivemall/pull/171#discussion_r233262624
--- Diff:
spark/spark-2.3/src/test/scala/org/apache/spark/sql/hive/XGBoostSuite.scala ---
@@ -77,6 +77,7 @@ final class XGBoostSuite extends VectorQueryTest {
val model =
hiveContext.sparkSession.read.format("libxgboost").load(tempDir)
val predict = model.join(mllibTestDf)
.xgboost_predict($"rowid", $"features", $"model_id",
$"pred_model")
--- End diff --
When invoking `xgboost_predict`, an assesion inside the xgboost library
fails. I'm looking into this failure now though, I think we could skip the
xgboost support for spark-2.3 in the upcoming release.
---