
Ultimate access to all questions.
You are working in an Azure Machine Learning workspace and training an MLflow model interactively in a notebook. You need to log dictionary-type artifacts from the experiments using MLflow.
Which syntax should you use?
A
mlflow.log_artifact(my_dict)
B
mlflow.log_metric("my_metric", my_dict)_
C
mlflow.log_metrics(my_dict)
D
mlflow.log_artifacts(my_dict)