Reputation: 31
I'm using RandomForest.trainClassifier
.
Supported Parameter are:
But extra parameters like useNodeIdCache
, checkpointDir
, and checkpointInterval
are available in Scala.
How can be these features be implemented in PySpark?
Upvotes: 1
Views: 598
Reputation:
pyspark.mllib
is in the maintenance mode and is longer developed (access to these features won't be added). If you full featured API use pyspark.ml
which provides:
Upvotes: 2