You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sets the train/test split to random splitting of an extract of a single dataset
19
19
20
20
:param float train_ratio: Ratio of rows to use for train set. Must be between 0 and 1
21
-
:param object selection: A :class:`DSSDatasetSelectionBuilder` to build the settings of the extract of the dataset. May be None (won't be changed)
22
-
:param str dataset_name: Name of dataset to split. If None, the main dataset used to create the ML Task will be used.
21
+
:param object selection: A :class:`~dataikuapi.dss.utils.DSSDatasetSelectionBuilder` to build the settings of the extract of the dataset. May be None (won't be changed)
22
+
:param str dataset_name: Name of dataset to split. If None, the main dataset used to create the visual analysis will be used.
Sets the train/test split to k-fold splitting of an extract of a single dataset
41
41
42
42
:param int n_folds: number of folds. Must be greater than 0
43
-
:param object selection: A :class:`DSSDatasetSelectionBuilder` to build the settings of the extract of the dataset. May be None (won't be changed)
44
-
:param str dataset_name: Name of dataset to split. If None, the main dataset used to create the ML Task will be used.
43
+
:param object selection: A :class:`~dataikuapi.dss.utils.DSSDatasetSelectionBuilder` to build the settings of the extract of the dataset. May be None (won't be changed)
44
+
:param str dataset_name: Name of dataset to split. If None, the main dataset used to create the visual analysis will be used.
Sets the train/test split to explicit extract of one or two dataset
62
+
Sets the train/test split to explicit extract of one or two dataset(s)
63
63
64
-
:param object train_selection: A :class:`DSSDatasetSelectionBuilder` to build the settings of the extract of the train dataset. May be None (won't be changed)
65
-
:param object test_selection: A :class:`DSSDatasetSelectionBuilder` to build the settings of the extract of the test dataset. May be None (won't be changed)
64
+
:param object train_selection: A :class:`~dataikuapi.dss.utils.DSSDatasetSelectionBuilder` to build the settings of the extract of the train dataset. May be None (won't be changed)
65
+
:param object test_selection: A :class:`~dataikuapi.dss.utils.DSSDatasetSelectionBuilder` to build the settings of the extract of the test dataset. May be None (won't be changed)
66
66
:param str dataset_name: Name of dataset to use for the extracts. If None, the main dataset used to create the ML Task will be used.
67
67
:param str test_dataset_name: Name of a second dataset to use for the test data extract. If None, both extracts are done from dataset_name
68
-
:param object train_filter: A :class:`DSSFilterBuilder` to build the settings of the filter of the train dataset. May be None (won't be changed)
69
-
:param object test_filter: A :class:`DSSFilterBuilder` to build the settings of the filter of the test dataset. May be None (won't be changed)
68
+
:param object train_filter: A :class:`~dataikuapi.dss.utils.DSSFilterBuilder` to build the settings of the filter of the train dataset. May be None (won't be changed)
69
+
:param object test_filter: A :class:`~dataikuapi.dss.utils.DSSFilterBuilder` to build the settings of the filter of the test dataset. May be None (won't be changed)
0 commit comments