Hello, This question has been addressed on Stack Overflow using the spark shell, but not PySpark.
I found within the Spark SQL documentation where in PySpark SQL I can load
a JAR into my SparkSession config such as:
*spark = SparkSession\*
* .builder\*
* .appName("appname")\*
* .config("spark.jars","location_of_model/MLMODEL.jar")\*
* .getOrCreate()*
The above code works fine but I can't figure out how to actually use
MLMODEL.jar to score a dataset. Can anyone help with this? Thank you!
