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.
"""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