Closed PowerToThePeople111 closed 3 years ago
When using the last version available on the maven repo jpmml-sparkml-1.6.2.jar I get the following stacktrace: java.lang.NoClassDefFoundError: org/dmg/pmml/Model
Fix your classpath! The JPMML-SparkML library JAR alone is not enough, there is a bunch of incoming JPMML library dependencies as well.
For example, the org.dmg.pmml.Model
class is defined in the JPMML-Model library.
As far as I understood, I need to compile the master branch.
You don't need to compile anything, because you can use the pre-built JPMML-SparkML all-inclusive binary release JAR file as explained in the README file.
Sadly tho, when running mvn clean install, some test fail which all seem to have one reason
The master
branch builds 100% fine with Apache Spark version 3.0.X.
This project has full GitHub Actions CI coverage, see here: https://github.com/jpmml/jpmml-sparkml/actions?query=workflow%3Amaven
Hello,
I tried to get a running version of your awesome project for Spark 3.0. As far as I understood, I need to compile the master branch. Sadly tho, when running mvn clean install, some test fail which all seem to have one reason.
I wanted to know if I can safely skip the tests and still get a running version?
When using the last version available on the maven repo
jpmml-sparkml-1.6.2.jar
I get the following stacktrace when executing this code:Stacktrace:
Do I get this stacktrace because the version is not the correct one or do I have to add an additional dependency?