no_split¶
Empty Data Splitter class.
Module Contents¶
Contents¶
-
class
evalml.preprocessing.data_splitters.no_split.
NoSplit
(random_seed=0)[source]¶ Does not split the training data into training and validation sets.
All data is passed as the training set, test data is simply an array of None. To be used for future unsupervised learning, should not be used in any of the currently supported pipelines.
- Parameters
random_seed (int) – The seed to use for random sampling. Defaults to 0. Not used.
Methods
Return the number of splits of this object.
Divide the data into training and testing sets, where the testing set is empty.