Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Fix verify_delete merge conflicts #79

Merged
merged 1 commit into from
Jan 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/efs-xgboost-mnist-trainingjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
roleArn: arn:aws:iam::123456789012:role/service-role/AmazonSageMaker-ExecutionRole
region: us-west-2
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceCount: 1
instanceType: ml.m4.xlarge
Expand Down
8 changes: 4 additions & 4 deletions samples/spot-xgboost-mnist-hpo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
Expand All @@ -87,14 +87,14 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
recordWrapperType: None
inputMode: File
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceType: ml.m4.xlarge
instanceCount: 1
Expand All @@ -106,4 +106,4 @@ spec:
enableNetworkIsolation: true
enableInterContainerTrafficEncryption: false
checkpointConfig:
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/checkpoints/
s3Uri: s3://my-bucket/xgboost/checkpoints/
8 changes: 4 additions & 4 deletions samples/spot-xgboost-mnist-trainingjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
roleArn: arn:aws:iam::123456789012:role/service-role/AmazonSageMaker-ExecutionRole
region: us-west-2
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceCount: 1
instanceType: ml.m4.xlarge
Expand All @@ -40,17 +40,17 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
- channelName: validation
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
checkpointConfig:
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/checkpoints/
s3Uri: s3://my-bucket/xgboost/checkpoints/
6 changes: 3 additions & 3 deletions samples/xgboost-mnist-custom-endpoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
region: us-west-2
sageMakerEndpoint: https://sagemaker.us-west-2.amazonaws.com
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceCount: 1
instanceType: ml.m4.xlarge
Expand All @@ -39,15 +39,15 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
- channelName: validation
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
6 changes: 3 additions & 3 deletions samples/xgboost-mnist-hpo-custom-endpoint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
Expand All @@ -89,14 +89,14 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
recordWrapperType: None
inputMode: File
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceType: ml.m4.xlarge
instanceCount: 1
Expand Down
6 changes: 3 additions & 3 deletions samples/xgboost-mnist-hpo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
Expand All @@ -91,14 +91,14 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
recordWrapperType: None
inputMode: File
outputDataConfig:
s3OutputPath: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost
s3OutputPath: s3://my-bucket/xgboost
resourceConfig:
instanceType: ml.m4.xlarge
instanceCount: 1
Expand Down
4 changes: 2 additions & 2 deletions samples/xgboost-mnist-trainingjob.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ spec:
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/train/
s3Uri: s3://my-bucket/xgboost/train/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
- channelName: validation
dataSource:
s3DataSource:
s3DataType: S3Prefix
s3Uri: https://s3-us-west-2.amazonaws.com/my-bucket/xgboost/validation/
s3Uri: s3://my-bucket/xgboost/validation/
s3DataDistributionType: FullyReplicated
contentType: text/csv
compressionType: None
Expand Down