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 this visual analysis lab
161
162
for a dataset.
162
163
163
-
164
-
The returned ML task will be in 'guessing' state, i.e. analyzing
165
-
the input dataset to determine feature handling and algorithms.
166
-
167
-
You should wait for the guessing to be completed by calling
168
-
``wait_guess_complete`` on the returned object before doing anything
169
-
else (in particular calling ``train`` or ``get_settings``)
170
-
164
+
:param string target_variable: Variable to predict
171
165
:param string ml_backend_type: ML backend to use, one of PY_MEMORY, MLLIB or H2O
172
166
:param string guess_policy: Policy to use for setting the default parameters. Valid values are: DEFAULT, SIMPLE_FORMULA, DECISION_TREE, EXPLANATORY and PERFORMANCE
167
+
: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
168
+
: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.
169
+
You should wait for the guessing to be completed by calling
170
+
``wait_guess_complete`` on the returned object before doing anything
171
+
else (in particular calling ``train`` or ``get_settings``)
:param string prediction_type: In case of a prediction problem the prediction type can be specify. Valid values are BINARY_CLASSIFICATION, REGRESSION, MULTICLASS.
0 commit comments