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
:param list model_ids: A list of model identifiers
730
+
:param str method: the ensembling method. One of: AVERAGE, PROBA_AVERAGE, MEDIAN, VOTE, LINEAR_MODEL, LOGISTIC_MODEL
731
+
732
+
This method waits for the ensemble train to complete. If you want to train asynchronously, use :meth:`start_ensembling` and :meth:`wait_train_complete`
733
+
734
+
This method returns the identifier of the trained ensemble.
735
+
To get all identifiers for all models trained across all training sessions,
736
+
use :meth:`get_trained_models_ids`
737
+
738
+
This identifier can be used for :meth:`get_trained_model_snippet`, :meth:`get_trained_model_details` and :meth:`deploy_to_flow`
"""Creates a new prediction task in a new visual analysis lab
181
186
for a dataset.
182
187
183
-
184
-
The returned ML task will be in 'guessing' state, i.e. analyzing
185
-
the input dataset to determine feature handling and algorithms.
186
-
187
-
You should wait for the guessing to be completed by calling
188
-
``wait_guess_complete`` on the returned object before doing anything
189
-
else (in particular calling ``train`` or ``get_settings``)
190
-
191
188
:param string ml_backend_type: ML backend to use, one of PY_MEMORY, MLLIB or H2O
192
189
:param string guess_policy: Policy to use for setting the default parameters. Valid values are: DEFAULT, SIMPLE_FORMULA, DECISION_TREE, EXPLANATORY and PERFORMANCE
190
+
: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.
191
+
You should wait for the guessing to be completed by calling
192
+
``wait_guess_complete`` on the returned object before doing anything
193
+
else (in particular calling ``train`` or ``get_settings``)
0 commit comments