|
2 | 2 | aws: |
3 | 3 | region: us-east-1 |
4 | 4 | # execution role, replace the role name below with the one you are using |
5 | | - sagemaker_execution_role_name: your-sagemaker-execution-role |
| 5 | + sagemaker_execution_role_name: <your-sagemaker-execution-role> |
6 | 6 | # the execution role ARN is determined automatically by the code |
7 | | - sagemaker_execution_role_arn: arn:aws:iam::{account_id}:role/{role} |
| 7 | + sagemaker_execution_role_arn: arn:aws:iam::{account_id}:role/service-role/{role} |
8 | 8 | s3_bucket: sagemaker-{region}-{account_id} # region and account id are automatically replaced |
9 | | - s3_prefix: mlops-pipeline-model |
| 9 | + s3_prefix: mlops-pipeline-model |
| 10 | + # view more information on the network configuration here: |
| 11 | + # https://sagemaker.readthedocs.io/en/stable/api/utility/network.html |
| 12 | + network_config: |
| 13 | + enable_network_isolation: |
| 14 | + # these are list of security groups and subnets |
| 15 | + # if you have these values configured, mention them |
| 16 | + # below |
| 17 | + security_group_ids: |
| 18 | + subnets: |
| 19 | + # Boolean that determines whether to encrypt inter-container traffic. |
| 20 | + # Default value is None. |
| 21 | + encrypt_inter_container_traffic: |
10 | 22 |
|
11 | 23 | presto: |
12 | | - host: <0.0.0.0> |
13 | | - parameter: "0000" |
14 | | - presto_credentials: <presto_credentials> |
15 | | - catalog: <catalog> |
16 | | - schema: <schema> |
| 24 | + host: <your-presto-server-ip> |
| 25 | + parameter: "<your-presto-port-number" |
| 26 | + presto_credentials: <your-presto-server-credentials> |
| 27 | + catalog: <catalog-for-presto-server> |
| 28 | + schema: <schema-for-presto-server> |
17 | 29 |
|
18 | 30 | ## User needs to configure the following |
19 | 31 | pipeline: |
@@ -93,7 +105,7 @@ tuning_step: |
93 | 105 |
|
94 | 106 | evaluation_step: |
95 | 107 | step_name: Evaluate-Model |
96 | | - accuracy_condition_threshold: 0.40 |
| 108 | + accuracy_condition_threshold: 0.60 |
97 | 109 | instance_type: ml.m5.xlarge |
98 | 110 | instance_count: 1 |
99 | 111 | evaluation_filename: evaluation.json |
|
0 commit comments