jsleight
jsleight
Thanks for the requested info. So what is happening is that the `loan_term_idx` field is considered a "nominal" attribute, but `loan_term_idx_imputed` has reset that attribute status so it is now...
@ancasarb do you know anything about this?
We are on spark 3.2 which is cross compatible for scala 2.12 and 2.13. If you (or anyone) wants to submit a PR to cross compile mleap for both scala...
Ah, that makes sense. In principle I think you can make only some of the modules be cross-compiled with scala 2.13 if you tweaked https://github.com/combust/mleap/blob/master/project/MleapProject.scala. Right nowthe build settings are...
mleap doesn't have any support for flink right now. In principle there could be a `mleap-flink` module analogous to the `mleap-spark` module. I'll happy review a set of PRs to...
Hey @karllessard thanks for reaching out! We're only building mleap against java 8 right now so I'm not sure. I'm assuming you meant Spark 3 (not scala 3), and spark...
> If you want, I suggest that we keep this issue open and I can let you know when we have available snapshots for you to try. Sounds good to...
Happy to announce that I just merged #818 which upgraded mleap to java 11. If folks want to try it out then you should be able to use the snapshot...
I can see how this would be annoying when trying to make predictions with the mleap transformer since the mleap input schema isn't the same as the spark input schema....
@aresa7796 on the `conf = SparkConf().setAppName('collaborativeFiltering').setMaster('local')` line you need to add a `.set("spark.jars.packages", "ml.combust.mleap.mleap-spark_2.12:0.20.0")` so that spark will install the mleap jar into it's jvm. From your code I /think/...