Databricks Certified Machine Learning Professional — Question 60

A machine learning engineer has developed a random forest model using scikit-learn and registered the model using MLflow. They now want to deploy that model in parallel.

Which of the following operations can they use to create a function they can use to deploy the registered scikit-learn model in parallel?

Answer options

Correct answer: C

Explanation

The correct answer is C, as mlflow.sklearn.spark.udf allows the deployment of scikit-learn models in parallel. Option A is incorrect because it is indeed possible to deploy such models in parallel. Options B and D are related to other types of functions and do not specifically apply to scikit-learn models.