exam questions

Exam DP-100 All Questions

View all questions & answers for the DP-100 exam

Exam DP-100 topic 4 question 54 discussion

Actual exam question from Microsoft's DP-100
Question #: 54
Topic #: 4
[All DP-100 Questions]

HOTSPOT -

You manage an Azure Machine Learning workspace. You submit a training job with the Azure Machine Learning Python SDK v2. You must use MLflow to log metrics, model parameters, and model artifacts automatically when training a model.

You start by writing the following code segment:

import mlflow
mlflow.autolog(log_models=False, exclusive=True)

For each of the following statements, select Yes if the statement is true. Otherwise, select No.

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
PI_Team
Highly Voted 1 year, 9 months ago
Y,N,Y https://learn.microsoft.com/en-us/azure/machine-learning/how-to-log-view-metrics?view=azureml-api-2&tabs=interactive#logging-images When you use the mlflow.autolog function, it enables automatic logging of metrics, parameters, and artifacts to a user-created run in MLflow. This means that the autologged content will be logged to a run that was created by the user, rather than being logged to a system-generated run. SaM
upvoted 6 times
...
phdykd
Highly Voted 1 year, 10 months ago
https://mlflow.org/docs/latest/python_api/mlflow.html#mlflow.autolog No, No, No
upvoted 6 times
VeraKo
11 months, 1 week ago
Correct! No, No, No From your link https://mlflow.org/docs/latest/python_api/mlflow.html#mlflow.autolog --> log_models – If True, trained models are logged as MLflow model artifacts. If False, trained models are not logged. Input examples and model signatures, which are attributes of MLflow models, are also omitted when log_models is False. --> exclusive – If True, autologged content is not logged to user-created fluent runs. If False, autologged content is logged to the active fluent run, which may be user-created.
upvoted 1 times
...
...
Shariq
Most Recent 1 year ago
The exclusive=True parameter ensures that only MLflow logging will be used, preventing conflicts with other loggers that might be active. this means that the first one should be YES
upvoted 3 times
...
Tin_Tin
1 year, 4 months ago
log_models – If True, trained models are logged as MLflow model artifacts. If False, trained models are not logged. Input examples and model signatures, which are attributes of MLflow models, are also omitted when log_models is False. exclusive – If True, autologged content is not logged to user-created fluent runs. If False, autologged content is logged to the active fluent run, which may be user-created https://mlflow.org/docs/latest/python_api/mlflow.html#mlflow.autolog
upvoted 2 times
hiyoww
1 year, 2 months ago
So N N N
upvoted 1 times
...
...
prabhabharadwaj
1 year, 6 months ago
No No Yes, Based n below 2 link
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...