You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use spark-submit class com.linkedin.photon.ml.cli.game.GameTrainingDriver , it will not run.
If I change it to spark-submit
--class com.linkedin.photon.ml.cli.game.training.GameTrainingDriver
it runs with an error message:
Exception in thread "main" java.lang.AbstractMethodError: com.linkedin.photon.ml.cli.game.training.GameTrainingDriver$.org$apache$spark$ml$param$Params$setter$paramMap_$eq(Lorg/apache/spark/ml/param/ParamMap;)V
Is there any way to fix this so that the GAME model with run?
The text was updated successfully, but these errors were encountered:
I saw the same issue when I launched the job with spark 2.4.5. I suspect you were using a similar version.
The current photon-ml only compiles with spark 2.3 (it complains when compiling with spark 2.4 due to spark backward incompatibility). When you launch the job, make sure you launch with spark 2.3.x.
When I use spark-submit class com.linkedin.photon.ml.cli.game.GameTrainingDriver , it will not run.
If I change it to spark-submit
--class com.linkedin.photon.ml.cli.game.training.GameTrainingDriver
it runs with an error message:
Exception in thread "main" java.lang.AbstractMethodError: com.linkedin.photon.ml.cli.game.training.GameTrainingDriver$.org$apache$spark$ml$param$Params$setter$paramMap_$eq(Lorg/apache/spark/ml/param/ParamMap;)V
Is there any way to fix this so that the GAME model with run?
The text was updated successfully, but these errors were encountered: