DP-100 · Question #156
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might…
The correct answer is A. Yes. The scikit-learn estimator provides a simple way of launching a scikit-learn training job on a compute target. It is implemented through the SKLearn class, which can be used to support single-node CPU training. from azureml.train.sklearn import SKLearn estimator =…
Question
Exhibit
Options
- AYes
- BNo
How the community answered
(62 responses)- A76% (47)
- B24% (15)
Explanation
The scikit-learn estimator provides a simple way of launching a scikit-learn training job on a compute target. It is implemented through the SKLearn class, which can be used to support single-node CPU training. from azureml.train.sklearn import SKLearn estimator = SKLearn(source_directory=project_folder, compute_target=compute_target, entry_script='train_iris.py' https://docs.microsoft.com/en-us/azure/machine-learning/how-to-train-scikit-learn
Topics
Community Discussion
No community discussion yet for this question.
