
Ultimate access to all questions.
You are working on a project that requires registering models and managing their stages using MLflow's Model Registry. Explain how you would register a model using the MLflow Client API, and discuss the benefits of using the Model Registry for model management.
A
Use the MLflow UI to manually upload the model file and register it in the Model Registry.
B
Use the MLflow Client API to log the model as an artifact in an MLflow Run, and then register the model using the 'mlflow.register_model' function._
C
Manually create a new entry in the Model Registry and associate it with the model file stored in the MLflow tracking server.
D
Use the MLflow Client API to log the model as a metric in an MLflow Run, and then register the model using the 'mlflow.register_model' function._