How can you retrieve the latest model version in the 'Production' stage using MlflowClient?
-
A
client.get_latest_versions(name, stages=['Production'])
-
B
client.get_model_version(name, 'Production')
-
C
client.fetch_production_model(name)
-
D
mlflow.get_production_model(name)