Developing Models in Microsoft Azure Flashcards

1
Q

What is the purpose of an early termination policy?

To truncate the experiment and save computing resources

To truncate the workspace and save computing resources

To truncate under-performing run and save computing resources

To kill the run instance.

A

To truncate under-performing run and save computing resources

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

One of the exit criteria in your automated machine learning experiment is experiment_timeout_minutes. What does this setting allow you to define?

How long the environment associated with the experiment will remain active

How long each run in an experiment can continue to run

How long the compute target associated with the experiment will remain active

How long an experiment can continue in run

A

How long an experiment can continue in run

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which parameter is not needed to create Estimators?

A reference to computing resources

A script parameter and its location

A reference to workspace

Execution environment and its dependencies

A

A reference to workspace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which property of Run objects is needed to get a reference to it?

Run duration property

The Run ID property

Run number property

Run name property

A

The Run ID property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

You are starting a new experiment in which you only need computing resources until the training run, and would like to be decommissioned after the run. What is an ideal candidate?

Run-based managed compute

Cloud-based VM

Attached compute

Persisted managed compute

A

Run-based managed compute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

While creating a Machine Learning workspace, which resource is not created?

Microsoft Key Vault

Microsoft compute target

Microsoft Insight

Microsoft Storage

A

Microsoft compute target

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What Machine Learning environment is not supported by Microsoft Azure?

User-managed

System-managed

Remotely managed

Curated

A

Remotely managed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

You are working on preprocessing data as part of your model creation. You need to remove all the columns from your data except columns date, age, ssn and phone. What method would you use?

data. remove_columns([‘date’,’age’,’ssn’,’phone’])
data. retain_columns([‘date’,’age’,’ssn’,’phone’])
data. extract_columns([‘date’,’age’,’ssn’,’phone’])
data. keep_columns([‘date’,’age’,’ssn’,’phone’])

A

data.keep_columns([‘date’,’age’,’ssn’,’phone’])

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

You are working on a dataset and as part of your preprocessing, you need to retain data for employees whose income is less than 100,000. What will achieve this?

data. remove(data[‘income’] > 100000)
data. split(data[‘income’] < 100000)
data. filter(data[‘income’] < 100000)
data. filter(data[‘income’] > 100000)

A

data.filter(data[‘income’] < 100000)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which is not a sampling strategy supported by Microsoft Azure?

Random sampling

Stratified sampling

Bayesian sampling

Grid sampling

A

Stratified sampling

How well did you know this?
1
Not at all
2
3
4
5
Perfectly