
Ultimate access to all questions.
A machine learning engineer is enhancing a project to automatically refresh the model each time the project runs. The project is connected to an existing model named model_name in the MLflow Model Registry. The following code snippet is part of their strategy:
mlflow.sklearn.log_model(
sk_model=model,
artifact_path="model",
registered_model_name=model_name
)
mlflow.sklearn.log_model(
sk_model=model,
artifact_path="model",
registered_model_name=model_name
)
Given that model_name is already present in the MLflow Model Registry, what does the parameter registered_model_name=model_name signify?
A
It creates a new model titled model_name in the MLflow Model Registry.
B
It adds a new version of the model_name model to the MLflow Model Registry.
C
It removes the need to specify the model name in the next required call to mlflow.register_model.
D
It indicates the name of the Run in the MLflow Experiment.
E
It signifies the name of the logged model in the MLflow Experiment.