ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 114 - DP-100 discussion

Report
Export

You use the following code to run a script as an experiment in Azure Machine Learning:

You must identify the output files that are generated by the experiment run.

You need to add code to retrieve the output file names.

Which code segment should you add to the script?

A.
files = run.get_properties()
Answers
A.
files = run.get_properties()
B.
files= run.get_file_names()
Answers
B.
files= run.get_file_names()
C.
files = run.get_details_with_logs()
Answers
C.
files = run.get_details_with_logs()
D.
files = run.get_metrics()
Answers
D.
files = run.get_metrics()
E.
files = run.get_details()
Answers
E.
files = run.get_details()
Suggested answer: B

Explanation:

You can list all of the files that are associated with this run record by called run.get_file_names()

Reference: https://docs.microsoft.com/en-us/azure/machine-learning/how-to-track-experiments

asked 02/10/2024
Daniel Martos
44 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first