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
Add optional parameters to force prediction type in ML pred task creation, and add a method to re-guess the task parameters with a option to force pred type
:param string prediction_type: In case of a prediction problem the prediction type can be specify. Valid values are BINARY_CLASSIFICATION, REGRESSION, MULTICLASS.
930
+
:param boolean wait_guess_complete: if False, the returned ML task will be in 'guessing' state.
931
+
You should wait for the guessing to be completed by calling
932
+
``wait_guess_complete`` on the returned object before doing anything
933
+
else (in particular calling ``train`` or ``get_settings``)
"""Creates a new prediction task in a new visual analysis lab
198
199
for a dataset.
199
200
201
+
:param string input_dataset: the dataset to use for training/testing the model
202
+
:param string target_variable: the variable to predict
200
203
:param string ml_backend_type: ML backend to use, one of PY_MEMORY, MLLIB or H2O
201
204
:param string guess_policy: Policy to use for setting the default parameters. Valid values are: DEFAULT, SIMPLE_FORMULA, DECISION_TREE, EXPLANATORY and PERFORMANCE
205
+
:param string prediction_type: The type of prediction problem this is. If not provided the prediction type will be guessed. Valid values are: BINARY_CLASSIFICATION, REGRESSION, MULTICLASS
202
206
:param boolean wait_guess_complete: if False, the returned ML task will be in 'guessing' state, i.e. analyzing the input dataset to determine feature handling and algorithms.
203
207
You should wait for the guessing to be completed by calling
204
208
``wait_guess_complete`` on the returned object before doing anything
205
209
else (in particular calling ``train`` or ``get_settings``)
0 commit comments