Ranjeet
Ranjeet

Reputation: 31

How to add checkpoints to Random Forest Model In PySpark Environment?

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

Answers (1)

user6022341
user6022341

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

Related Questions