
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
Question: 2 You have successfully trained a machine learning model in Databricks using MLflow. Your next task is to register the model to Unity Catalog for easy discovery and management. What are the correct steps you should take to ensure the model is properly registered? (Select two)
A
Tag the model with a Unity Catalog-specific tag using mlflow.set_tag() before registering it.
B
Use the Databricks Model Registry to register the model and select "Unity Catalog" as the destination.
C
Register the model manually by navigating to the Unity Catalog tab in the Databricks workspace.
D
Set the environment variable MLFLOW_MODEL_REGISTRY_URI to the Unity Catalog URI before running your MLflow script.
E
Use the MLflow mlflow.register_model() function with the Unity Catalog URI.
Explanation:
To properly register a machine learning model in Unity Catalog after training it with MLflow in Databricks, the correct steps involve using the Databricks Model Registry and MLflow functions that interface with Unity Catalog:
mlflow.register_model() function, providing the Unity Catalog URI to ensure the model is registered in Unity Catalog.These steps ensure seamless integration and proper registration within the Unity Catalog ecosystem.