July 2018
Intermediate to advanced
334 pages
8h 20m
English
Next, we will split our existing training set (the one used to train the model) into two:
We can accomplish a split by creating an instance of the TrainValidationSplit algorithm:
val validatedTestResults: DataFrame = new TrainValidationSplit() .setSeed(1234567L) .setEstimatorParamMaps(finalParamGrid) .setEstimator(irisPipeline) ...Read now
Unlock full access