|
14 | 14 | "3. **Component Creation**: Generate and deploy Greengrass model components\n", |
15 | 15 | "\n", |
16 | 16 | "## Prerequisites\n", |
17 | | - "- Trained models from SageMaker (both compressed and compiled)\n", |
| 17 | + "- Trained models from SageMaker (both trained and compiled)\n", |
18 | 18 | "- AWS CLI configured with appropriate permissions\n", |
19 | 19 | "- Access to AWS IoT Greengrass v2 service" |
20 | 20 | ] |
|
118 | 118 | "source": [ |
119 | 119 | "### Step 1.1: Specify Model Artifact Locations\n", |
120 | 120 | "\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" |
122 | 124 | ] |
123 | 125 | }, |
124 | 126 | { |
|
133 | 135 | "# Get S3 locations for model artifacts\n", |
134 | 136 | "print(\"📥 Model Artifact Configuration\")\n", |
135 | 137 | "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", |
138 | 138 | "\n", |
139 | 139 | "trained_model_artifacts = input(\"Enter S3 URI for trained model (from SageMaker training): \")\n", |
140 | 140 | "compiled_model_artifacts = input(\"Enter S3 URI for compiled model (from SageMaker Inference -> Compilation): \")\n", |
|
0 commit comments