- 
Method Summary
Predict values for examples stored in a JavaRDD. 
 double
 
Predict values for a single data point using the model trained. 
 
Predict values for the given data set using the model trained. 
 
 
 
 
- 
Method Details
- 
predictPredict values for the given data set using the model trained.
  
- Parameters:
- testData- RDD representing data points to be predicted
- Returns:
- RDD[Double] where each entry contains the corresponding prediction
 
 
- 
predictdouble predict(Vector testData) Predict values for a single data point using the model trained.
  
- Parameters:
- testData- array representing a single data point
- Returns:
- Double prediction from the trained model
 
 
- 
predictPredict values for examples stored in a JavaRDD. 
- Parameters:
- testData- JavaRDD representing data points to be predicted
- Returns:
- a JavaRDD[java.lang.Double] where each entry contains the corresponding prediction