Which code block accomplishes this task while minimizing potential compute costs?

The data science team has created and logged a production model using MLflow. The following code correctly imports and applies the production model to output the predictions as a new DataFrame named preds with the schema "customer_id LONG, predictions DOUBLE, date DATE".

The data science team would like predictions saved to a Delta Lake table with the ability to compare all predictions across time. Churn predictions will be made at most once per day.

Which code block accomplishes this task while minimizing potential compute costs?

A) preds.write.mode("append").saveAsTable("churn_preds")

B) preds.write.format("delta").save("/preds/churn_preds")

C)

D)

E)

A . Option A
B . Option B
C . Option C
D . Option D
E . Option E

Answer: A

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments