Machine Learning Operations Flashcards

1
Q

What are the three deployment types for Blue/Green deployments?

A

All at once

Canary

Linear

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

Can you test multiple models in SageMaker on live traffic?

A

Yes, using production variants.

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

How are production variants splitting trafic?

A

A/B testing let’s say 90 percent to one model and 10 to another.

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

What AWS Service allows you o deploy your model to an actual Edge device?

A

Neo and IoT Green Grass

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

Can you use spot instances for Sagemaker Model training?

A

Yes, but you need to use checkpoints to S3.

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

What is the easiest way to deploy a model in SageMaker?

A

SageMaker jump start.

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

What is the the ModelBuilder in the SageMaker Python SDK?

A

It allows you to deploy models for inference with more control.

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

Can AWS CloudFormation be used for deployments?

A

Yes this is for advanced users.

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

What is the Cloudformation notation for a model?

A

AWS::SageMaker::Model

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

What is a real-time inference?

A

Low latency requirements.

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

What is SageMaker Serverless Inference?

A

No management of infrastructure.

Ideal for a workload that has idle periods and uneven traffic over time.

Must tolerate cold starts.

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

What is Asynchroneous Inference?

A

Queues and processes requests asynchronously.

Good for inferences that may take some time to process.

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

What is autoscaling inference?

A

Dynamically adjusts compute resources for endpoints based on traffic.

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

What is SageMaker Inference Recommender?

A

It recommends the best instance type and configuration for your model.

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

What is an inference pipeline?

A

A linear sequence of 2 -15 containers that handle both real-time inference and batch transforms.

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

What does Model Monitor Data Capture do?

A

It logs all endpoint and inference outputs. This is delivered to S3 as JSON.

17
Q

What does MLOps with SageMaker do?

A

It enabled hybrid ML workflows and integrates sagemaker with Kubernetes.

17
Q

What are SageMaker Projects?

A

It is a native MLOps solution with CI/CD.

18
Q

What is used in conjunction with SageMaker Projects for workflow pipelines?

A

SageMaker Pipelines

19
Q

Can codebuild execute a Sagemaker Pipeline?

A

Yes

20
Q
A