Skip to content

Commit 007478d

Browse files
author
Bhavisha Dawada
committed
Notebook cleanup
1 parent 81d9799 commit 007478d

2 files changed

Lines changed: 95 additions & 130 deletions

File tree

DDA_Greengrass_Component_Creator.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"3. **Component Creation**: Generate and deploy Greengrass model components\n",
1515
"\n",
1616
"## Prerequisites\n",
17-
"- Trained models from SageMaker (both compressed and compiled)\n",
17+
"- Trained models from SageMaker (both trained and compiled)\n",
1818
"- AWS CLI configured with appropriate permissions\n",
1919
"- Access to AWS IoT Greengrass v2 service"
2020
]
@@ -118,7 +118,9 @@
118118
"source": [
119119
"### Step 1.1: Specify Model Artifact Locations\n",
120120
"\n",
121-
"Provide S3 URIs for both trained (original) and compiled model artifacts."
121+
"Provide S3 URIs for both trained (original) and compiled model artifacts.\n",
122+
"💡 Note: The trained model URI can be found in SageMaker AI -> Training → Training jobs → [Your Job Name] → Output section\n",
123+
"💡 Note: The compiled model URI can be found in SageMaker AI -> Inference -> Compilation jobs -> [Your Job Name] -> Output"
122124
]
123125
},
124126
{
@@ -133,8 +135,6 @@
133135
"# Get S3 locations for model artifacts\n",
134136
"print(\"📥 Model Artifact Configuration\")\n",
135137
"print(\"Please provide S3 URIs for your trained models:\\n\")\n",
136-
"print(\"💡 Note: The trained model URI can be found in SageMaker console\")\n",
137-
"print(\" under Training → Training jobs → [Your Job Name] → Output section\\n\")\n",
138138
"\n",
139139
"trained_model_artifacts = input(\"Enter S3 URI for trained model (from SageMaker training): \")\n",
140140
"compiled_model_artifacts = input(\"Enter S3 URI for compiled model (from SageMaker Inference -> Compilation): \")\n",

0 commit comments

Comments
 (0)