Questions
In each chapter, you will find a couple of questions to check your understanding of the topics discussed:.
- You want to log the number of validation rows you will use within a script. Which method of the
Run
class will you use?a.
log_table
b.
log_row
c.
log
- You want to run a Python script that utilizes
scikit-learn
. How would you configure the AzureML environment?a. Add the
scikit-learn Conda dependency.
b. Add the
sklearn Conda dependency.
c. Use the AzureML
Azure-Minimal
environment, which already contains the needed dependencies. - You need to use
MLflow
to track the metrics generated in an Experiment and store them in your AzureML workspace. Which two pip packages do you need to have in your Conda environment?a.
mlflow
b.
azureml-mlflow
c.
sklearn
d.
logger
- You need to use
MLflow
to track the value0.1
for thetraining_rate
metric. Which of the following code achieves this requirement? Assume all classes are correctly imported at the top of the script:a.
mlflow...