Questions
Please answer the following questions to check your knowledge of the topics that were discussed in this chapter:
- What is the default minimum number of nodes for an AzureML compute cluster?
a. 0
b. 1
c. Equal to the maximum number of nodes
- You upload a CSV file to the default datastore that contains credit card transaction details. Which of the following methods should you use to create a dataset reference?
a.
Dataset.File.from_files()
b.
Dataset.Tabular.from_delimited_files()
c.
Workspace.from_csv_files()
d.
Datastore.from_csv_files()
- How can you force the creation of a blob container during the registration process of an Azure blob-based datastore?
a. Pass the
force_create=True
parameter to theDatastore.register_azure_blob_container()
method.b. Pass the
create_if_not_exists=True
parameter to theDatastore.register_azure_blob_container()
method.c. Pass the
force_create=True
parameter to theDatastore.register_container()
method.b. Pass the
create_if_not_exists=True...