(cross-validator {:keys [estimator evaluator estimator-param-maps num-folds seed
parallelism]})
K-fold cross validation performs model selection by splitting the dataset into a set of non-overlapping randomly partitioned folds which are used as separate training and test datasets e.g., with k=3 folds, K-fold cross validation will generate 3 (training, test) dataset pairs, each of which uses 2/3 of the data for training and 1/3 for testing. Each fold is used as the test set exactly once.
Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/CrossValidator.html
Timestamp: 2020-10-19T01:55:48.855Z
K-fold cross validation performs model selection by splitting the dataset into a set of non-overlapping randomly partitioned folds which are used as separate training and test datasets e.g., with k=3 folds, K-fold cross validation will generate 3 (training, test) dataset pairs, each of which uses 2/3 of the data for training and 1/3 for testing. Each fold is used as the test set exactly once. Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/CrossValidator.html Timestamp: 2020-10-19T01:55:48.855Z
(param-grid grids)
Builder for a param grid used in grid search-based model selection.
Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/ParamGridBuilder.html
Timestamp: 2020-10-19T01:55:49.184Z
Builder for a param grid used in grid search-based model selection. Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/ParamGridBuilder.html Timestamp: 2020-10-19T01:55:49.184Z
(param-grid-builder grids)
Builder for a param grid used in grid search-based model selection.
Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/ParamGridBuilder.html
Timestamp: 2020-10-19T01:55:49.184Z
Builder for a param grid used in grid search-based model selection. Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/ParamGridBuilder.html Timestamp: 2020-10-19T01:55:49.184Z
(train-validation-split {:keys [estimator evaluator estimator-param-maps seed
parallelism]})
Validation for hyper-parameter tuning. Randomly splits the input dataset into train and validation sets, and uses evaluation metric on the validation set to select the best model. Similar to CrossValidator, but only splits the set once.
Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/TrainValidationSplit.html
Timestamp: 2020-10-19T01:55:49.563Z
Validation for hyper-parameter tuning. Randomly splits the input dataset into train and validation sets, and uses evaluation metric on the validation set to select the best model. Similar to CrossValidator, but only splits the set once. Source: https://spark.apache.org/docs/3.0.1/api/scala/org/apache/spark/ml/tuning/TrainValidationSplit.html Timestamp: 2020-10-19T01:55:49.563Z
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close