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
"""Creates a new prediction task in a new visual analysis lab
351
+
for a dataset.
352
+
353
+
:param string input_dataset: the dataset to use for training/testing the model
354
+
:param string target_variable: the variable to predict
355
+
:param string ml_backend_type: ML backend to use, one of PY_MEMORY, MLLIB or H2O
356
+
:param string guess_policy: Policy to use for setting the default parameters. Valid values are: DEFAULT, SIMPLE_FORMULA, DECISION_TREE, EXPLANATORY and PERFORMANCE
357
+
: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
358
+
: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.
359
+
You should wait for the guessing to be completed by calling
360
+
``wait_guess_complete`` on the returned object before doing anything
361
+
else (in particular calling ``train`` or ``get_settings``)
0 commit comments