DP-100 · Question #157
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 h
The correct answer is B. No. 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_
Question
Exhibit
Options
- AYes
- BNo
How the community answered
(27 responses)- A15% (4)
- B85% (23)
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.
