Skip to content

Commit 178ddab

Browse files
committed
Fix instance type and cleanup notebook
1 parent 5bad878 commit 178ddab

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ This section outlines cost considerations for running the Drift Detection Pipeli
134134
- **SageMaker** – Prices vary based on EC2 instance usage for the Notebook Instances, Model Hosting, Model Training and Model Monitoring; each charged per hour of use. For more information, see [Amazon SageMaker Pricing](https://aws.amazon.com/sagemaker/pricing/).
135135
- The three `mml.m5.xlarge` *baseline, training and evaluation jobs* run for approx 20 minutes at $0.23 an hour, and cost less than $1.
136136
- The one `ml.t2.medium` instance for staging *hosting* endpoint costs $0.056 per hour, or $1.34 per day.
137-
- The two `ml.t2.large` instances for production *hosting* endpoint at 2 x $0.111 per hour, or $5.33 per day.
137+
- The two `ml.m5.large` instances for production *hosting* endpoint at 2 x $0.115 per hour, or $5.52 per day.
138138
- The one `ml.m5.xlarge` instance for *model monitor* schedule at $0.23 an hour, and cost less than $1 per day.
139139
- **S3** – Low cost, prices will vary depending on the size of the models/artifacts stored. The first 50 TB each month will cost only $0.023 per GB stored. For more information, see [Amazon S3 Pricing](https://aws.amazon.com/s3/pricing/).
140140
- **Lambda** - Low cost, $0.20 per 1 million request see [AWS Lambda Pricing](https://aws.amazon.com/lambda/pricing/).

build_pipeline/drift-detection.ipynb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,8 +374,6 @@
374374
"metadata": {},
375375
"outputs": [],
376376
"source": [
377-
"from botocore.exceptions import WaiterError\n",
378-
"\n",
379377
"predictor = wait_for_predictor(\"prod\")"
380378
]
381379
},

deployment_pipeline/prod-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"stage_name": "prod",
33
"instance_count": 2,
4-
"instance_type": "ml.t2.large",
4+
"instance_type": "ml.m5.large",
55
"auto_scaling": {
66
"min_capacity": 2,
77
"max_capacity": 4

0 commit comments

Comments
 (0)