Pass the Databricks ML Data Scientist Databricks-Machine-Learning-Professional Questions and answers with CertsForce

Viewing page 2 out of 2 pages
Viewing questions 11-20 out of questions
Questions # 11:

A machine learning engineer wants to view all of the active MLflow Model Registry Webhooks for a specific model.

They are using the following code block:

Question # 11

Which of the following changes does the machine learning engineer need to make to this code block so it will successfully accomplish the task?

Options:

A.

There are no necessary changes


B.

Replace list with view in the endpoint URL


C.

Replace POST with GET in the call to http request


D.

Replace list with webhooks in the endpoint URL


E.

Replace POST with PUT in the call to http request


Expert Solution
Questions # 12:

Which of the following MLflow operations can be used to automatically calculate and log a Shapley feature importance plot?

Options:

A.

mlflow.shap.log_explanation


B.

None of these operations can accomplish the task.


C.

mlflow.shap


D.

mlflow.log_figure


E.

client.log_artifact


Expert Solution
Questions # 13:

In a continuous integration, continuous deployment (CI/CD) process for machine learning pipelines, which of the following events commonly triggers the execution of automated testing?

Options:

A.

The launch of a new cost-efficient SQL endpoint


B.

CI/CD pipelines are not needed for machine learning pipelines


C.

The arrival of a new feature table in the Feature Store


D.

The launch of a new cost-efficient job cluster


E.

The arrival of a new model version in the MLflow Model Registry


Expert Solution
Questions # 14:

Which of the following operations in Feature Store Client fs can be used to return a Spark DataFrame of a data set associated with a Feature Store table?

Options:

A.

fs.create_table


B.

fs.write_table


C.

fs.get_table


D.

There is no way to accomplish this task with fs


E.

fs.read_table


Expert Solution
Questions # 15:

Which of the following describes concept drift?

Options:

A.

Concept drift is when there is a change in the distribution of an input variable


B.

Concept drift is when there is a change in the distribution of a target variable


C.

Concept drift is when there is a change in the relationship between input variables and target variables


D.

Concept drift is when there is a change in the distribution of the predicted target given by the model


E.

None of these describe Concept drift


Expert Solution
Questions # 16:

Which of the following is a simple, low-cost method of monitoring numeric feature drift?

Options:

A.

Jensen-Shannon test


B.

Summary statistics trends


C.

Chi-squared test


D.

None of these can be used to monitor feature drift


E.

Kolmogorov-Smirnov (KS) test


Expert Solution
Questions # 17:

A machine learning engineer has developed a model and registered it using the FeatureStoreClient fs. The model has model URI model_uri. The engineer now needs to perform batch inference on customer-level Spark DataFrame spark_df, but it is missing a few of the static features that were used when training the model. The customer_id column is the primary key of spark_df and the training set used when training and logging the model.

Which of the following code blocks can be used to compute predictions for spark_df when the missing feature values can be found in the Feature Store by searching for features by customer_id?

Options:

A.

df = fs.get_missing_features(spark_df, model_uri)

fs.score_model(model_uri, df)


B.

fs.score_model(model_uri, spark_df)


C.

df = fs.get_missing_features(spark_df, model_uri)

fs.score_batch(model_uri, df)

df = fs.get_missing_features(spark_df)


D.

fs.score_batch(model_uri, df)


E.

fs.score_batch(model_uri, spark_df)


Expert Solution
Questions # 18:

Which of the following Databricks-managed MLflow capabilities is a centralized model store?

Options:

A.

Models


B.

Model Registry


C.

Model Serving


D.

Feature Store


E.

Experiments


Expert Solution
Viewing page 2 out of 2 pages
Viewing questions 11-20 out of questions